49 lines
1.9 KiB
XML
49 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
<Preference
|
|
android:key="about_version"
|
|
android:title="@string/about_version_title" />
|
|
<Preference
|
|
android:summary="© 2011-2019, the Bitcoin Wallet developers\n© 2014-2019 the Dash Wallet Developers"
|
|
android:title="@string/about_copyright_title" />
|
|
<Preference
|
|
android:key="about_license"
|
|
android:summary="https://www.gnu.org/licenses/gpl-3.0.txt"
|
|
android:title="@string/about_license_title" >
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://www.gnu.org/licenses/gpl-3.0.txt" />
|
|
</Preference>
|
|
<Preference
|
|
android:key="about_source"
|
|
android:summary="https://github.com/HashEngineering/dash-wallet"
|
|
android:title="@string/about_source_title" >
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://github.com/HashEngineering/dash-wallet" />
|
|
</Preference>
|
|
<Preference
|
|
android:key="about_market_app"
|
|
android:summary="@string/about_market_app_summary"
|
|
android:title="@string/about_market_app_title" />
|
|
|
|
<PreferenceCategory android:title="@string/about_category_credits" >
|
|
<Preference
|
|
android:key="about_credits_bitcoinj"
|
|
android:summary="https://github.com/dashevo/dashj" >
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://github.com/dashevo/dashj" />
|
|
</Preference>
|
|
<Preference
|
|
android:key="about_credits_scrypt"
|
|
android:summary="https://github.com/wg/scrypt"
|
|
android:title="@string/about_credits_scrypt_title" >
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://github.com/wg/scrypt" />
|
|
</Preference>
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen> |