- minSdk version increased to 26

This commit is contained in:
2023-08-18 22:08:13 +01:00
parent ad08347488
commit 93558d7ce7
4 changed files with 7 additions and 4 deletions

View File

@@ -235,7 +235,7 @@ workflows:
- main_admin
- deploy-to-playstore:
context: appttude
flavour: "Driver"
flavour: "Admin"
filters:
branches:
only:

View File

@@ -17,7 +17,7 @@ android {
compileSdkVersion 31
defaultConfig {
applicationId "h_mal.appttude.com.driver"
minSdkVersion 24
minSdkVersion 26
targetSdkVersion 31
versionCode 7
versionName "2.0.0"

View File

@@ -37,6 +37,7 @@ import org.hamcrest.CoreMatchers.anything
import org.hamcrest.Matcher
import org.hamcrest.Matchers
import java.io.File
import java.time.LocalDate
@SuppressWarnings("unused")
open class BaseTestRobot {

View File

@@ -26,10 +26,12 @@
<activity
android:name=".ui.MainActivity"
android:configChanges="orientation|screenSize"
android:theme="@style/AppTheme.NoActionBar" />
android:theme="@style/AppTheme.NoActionBar"
android:exported="true"/>
<activity
android:name=".ui.update.UpdateActivity"
android:theme="@style/AppTheme.NoActionBar.Update" />
android:theme="@style/AppTheme.NoActionBar.Update"
android:exported="true"/>
<provider
android:name="androidx.core.content.FileProvider"