[Gradle][Tests][MPP] set compileSdkVersion to 31 in new-mpp-adnroid test-data

This commit is contained in:
Pavel Kargashinsky
2023-03-15 15:25:08 +01:00
committed by Space Team
parent 91f38e76b8
commit 2a336140d2
3 changed files with 8 additions and 9 deletions
@@ -9,12 +9,12 @@ java {
} }
android { android {
compileSdkVersion 27 compileSdkVersion 31
namespace 'app.example.com.app_sample' namespace 'app.example.com.app_sample'
defaultConfig { defaultConfig {
applicationId "app.example.com.app_sample" applicationId "app.example.com.app_sample"
minSdkVersion 21 minSdkVersion 26
targetSdkVersion 30 targetSdkVersion 31
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android">
package="app.example.com.app_sample">
<application <application
android:allowBackup="true" android:allowBackup="true"
@@ -9,7 +8,7 @@
android:roundIcon="@mipmap/ic_launcher_round" android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true" android:supportsRtl="true"
android:theme="@style/AppTheme"> android:theme="@style/AppTheme">
<activity android:name=".MainActivity"> <activity android:name=".MainActivity" android:exported="true">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
@@ -10,12 +10,12 @@ java {
} }
android { android {
compileSdkVersion 27 compileSdkVersion 31
namespace 'app.example.com.lib' namespace 'app.example.com.lib'
defaultConfig { defaultConfig {
minSdkVersion 21 minSdkVersion 26
targetSdkVersion 30 targetSdkVersion 31
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"