Circleci fix (#34)

- minSdk version increased to 26
This commit is contained in:
2023-08-18 22:10:26 +01:00
committed by GitHub
parent 1e528617f2
commit 30b60a1b0c
4 changed files with 7 additions and 4 deletions

View File

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

View File

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

View File

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

View File

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