Added beta group link in settings

This commit is contained in:
Ziver Koc 2015-01-16 15:20:59 +01:00
parent 2ebda08b5d
commit 9d8674a3ed
2 changed files with 12 additions and 0 deletions

View file

@ -36,5 +36,8 @@
<string name="pref_throughput_type">Throughput Type</string> <string name="pref_throughput_type">Throughput Type</string>
<string name="pref_throughput_type_summ">The type of throughput that should be displayed and logged</string> <string name="pref_throughput_type_summ">The type of throughput that should be displayed and logged</string>
<string name="action_clear">Clear</string> <string name="action_clear">Clear</string>
<string name="pref_join_beta">Join Beta Program</string>
<string name="pref_join_beta_summ">Join the Google+ group to get access to the beta releases of the app.</string>
</resources> </resources>

View file

@ -40,11 +40,20 @@
android:summary="@string/pref_debug_summ" android:summary="@string/pref_debug_summ"
android:defaultValue="false"> android:defaultValue="false">
</CheckBoxPreference> </CheckBoxPreference>
<Preference <Preference
android:key="about" android:key="about"
android:title="@string/pref_about" android:title="@string/pref_about"
android:defaultValue="false"> android:defaultValue="false">
</Preference> </Preference>
<Preference
android:key="beta_link"
android:title="@string/pref_join_beta"
android:summary="@string/pref_join_beta_summ">
<intent android:action="android.intent.action.VIEW"
android:data="https://play.google.com/apps/testing/com.ericsson.uecontrol" />
</Preference>
</PreferenceCategory> </PreferenceCategory>
</PreferenceScreen> </PreferenceScreen>