Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ugrade: changed the compilesdk to v33 and targetsdk to v33 #926

Merged
merged 1 commit into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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'
Loading