
This is a little helper to direct people to get a new device to download FDroid from another device that already has it. It first prompts them to join the same wifi network, and offers a QR Code to associate to the same wifi. The next step is a QR Code for getting the URL to the local repo. The index.html on that local repo includes a download link for FDroid and a repo link to the local repo. refs #3204 https://dev.guardianproject.info/issues/3204
21 lines
723 B
XML
21 lines
723 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
<item
|
|
android:id="@+id/menu_setup_repo"
|
|
android:icon="@android:drawable/ic_input_add"
|
|
android:showAsAction="ifRoom|withText"
|
|
android:title="@string/setup_repo"/>
|
|
<item
|
|
android:id="@+id/menu_send_fdroid_via_wifi"
|
|
android:icon="@android:drawable/arrow_up_float"
|
|
android:showAsAction="never"
|
|
android:title="@string/send_fdroid_via_wifi"/>
|
|
<item
|
|
android:id="@+id/menu_settings"
|
|
android:icon="@android:drawable/ic_menu_preferences"
|
|
android:showAsAction="never"
|
|
android:title="@string/menu_preferences"/>
|
|
|
|
</menu>
|