Kaynağa Gözat

Updated target sdk version

Vadik Sirekanyan 4 yıl önce
ebeveyn
işleme
c1e4b6e641
2 değiştirilmiş dosya ile 7 ekleme ve 5 silme
  1. 3 4
      app/build.gradle.kts
  2. 4 1
      app/src/main/AndroidManifest.xml

+ 3 - 4
app/build.gradle.kts

@@ -9,12 +9,11 @@ androidExtensions {
 }
 
 android {
-    compileSdkVersion(30)
-    buildToolsVersion("30.0.2")
+    compileSdk = 31
     defaultConfig {
         applicationId = "com.sirekanyan.knigopis"
-        minSdkVersion(21)
-        targetSdkVersion(30)
+        minSdk = 21
+        targetSdk = 31
         versionCode = 31
         versionName = "0.3.4"
         setProperty("archivesBaseName", "$applicationId-$versionName-$versionCode")

+ 4 - 1
app/src/main/AndroidManifest.xml

@@ -18,6 +18,7 @@
 
         <activity
             android:name=".feature.MainActivity"
+            android:exported="true"
             android:label="@string/common.title.app"
             android:launchMode="singleTop"
             android:theme="@style/Theme.Knigopis.Splash">
@@ -57,7 +58,9 @@
             android:screenOrientation="portrait"
             android:theme="@style/Theme.Knigopis.Profile" />
 
-        <activity android:name=".feature.login.LoginActivity">
+        <activity
+            android:name=".feature.login.LoginActivity"
+            android:exported="true">
             <intent-filter>
                 <action android:name="android.intent.action.VIEW" />