This commit is contained in:
jens 2021-09-20 19:58:11 +02:00
parent dcdb770d9f
commit 448942e4e8
5 changed files with 27 additions and 21 deletions

View File

@ -36,27 +36,27 @@ android {
flavorDimensions "version" flavorDimensions "version"
productFlavors productFlavors
{ {
googlePlayFlavor googlePlayFlavor
{ {
dimension "version" dimension "version"
versionNameSuffix "-googlePlay" versionNameSuffix "-googlePlay"
targetSdkVersion 29 targetSdkVersion 29
} }
fdroidFlavor fdroidFlavor
{ {
dimension "version" dimension "version"
targetSdkVersion 28 targetSdkVersion 28
} }
apkFlavor apkFlavor
{ {
dimension "version" dimension "version"
versionNameSuffix "-apk" versionNameSuffix "-apk"
targetSdkVersion 28 targetSdkVersion 28
} }
} }
} }
dependencies { dependencies {

View File

@ -121,7 +121,7 @@ public class ActivityManageRule extends Activity
{ {
context = this; context = this;
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
setContentView(R.layout.manage_specific_rule); setContentView(R.layout.activity_manage_specific_rule);
instance = this; instance = this;

View File

@ -63,6 +63,11 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginLeft="40dp" /> android:layout_marginLeft="40dp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="40dp"
android:text="@string/silentTriggersDnd" />
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"

View File

@ -691,5 +691,6 @@
<string name="tabsPlacement">Position of tab bar</string> <string name="tabsPlacement">Position of tab bar</string>
<string name="tabsPlacementSummary">Choose where the tabs bar should be placed.</string> <string name="tabsPlacementSummary">Choose where the tabs bar should be placed.</string>
<string name="wifiApi30">Because Google screwd up yet another part of Android, starting with API 30 only the currently visible wifis can be displayed. Not all the ones your device knows.</string> <string name="wifiApi30">Because Google screwd up yet another part of Android, starting with API 30 only the currently visible wifis can be displayed. Not all the ones your device knows.</string>
<string name="smsDialogNotice">If you have not used a send-sms action in this program before, Android may show an additional confirmation dialog, asking you to allow sending messages. You need to select the \"always allow\" checkbox and confirm if you want this action to work in the background. It's advised to run this rule manually once.</string> <string name="smsDialogNotice">If you have not used a send-sms action in this program before, Android may show an additional confirmation dialog, asking you to allow sending messages. You need to select the \"always allow\" checkbox and confirm if you want this action to work in the background. It\'s advised to run this rule manually once.</string>
<string name="silentTriggersDnd">REMARK: The silent mode often triggers Do-Not-Disturb on newer devices.</string>
</resources> </resources>