Skip to content

Commit

Permalink
Ugrade: changed the compilesdk to v33 and targetsdk to v33
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhalakupadhyay committed May 14, 2024
1 parent 17927bf commit 676aaf0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ android {
applicationId 'org.fossasia.badgemagic'
minSdkVersion versions.minSdk
targetSdkVersion versions.targetSdk
versionCode 12
versionName '1.8.2'
versionCode 13
versionName '1.8.3'
vectorDrawables.useSupportLibrary = true
}

Expand Down
5 changes: 3 additions & 2 deletions android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
android:name=".ui.DrawerActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar"
android:windowSoftInputMode="adjustResize">
android:windowSoftInputMode="adjustResize"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.MAIN" />
Expand All @@ -49,7 +50,7 @@
android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
</activity>
<activity android:name=".ui.EditBadgeActivity" android:screenOrientation="landscape"/>
<activity android:name=".ui.EditBadgeActivity" android:screenOrientation="landscape"/>
<activity android:name=".ui.EditClipartActivity" android:screenOrientation="landscape"/>

<provider
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/13.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Re-Release
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
android.enableJetifier=true
android.useAndroidX=true

org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=1024m
org.gradle.jvmargs=--add-opens java.base/java.io=ALL-UNNAMED
kotlin.native.ignoreDisabledTargets=true
6 changes: 3 additions & 3 deletions versions.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ext.versions = [:]

versions.compileSdk = 29
versions.compileSdk = 33
versions.buildTools = '29.0.2'
versions.minSdk = 24
versions.targetSdk = 29
versions.targetSdk = 33

versions.kotlin_version = '1.9.0'

versions.koin_version = '2.0.1'
versions.moshi_version = '1.8.0'
versions.leak_canary = '2.0-alpha-2'
versions.leak_canary = '3.0-alpha-4'

0 comments on commit 676aaf0

Please sign in to comment.