Skip to content

Commit 60ab9a7

Browse files
committed
PAINTROID-785 fix android build
1 parent 79e5fd1 commit 60ab9a7

39 files changed

+520
-440
lines changed

android/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ gradle-wrapper.jar
55
/gradlew.bat
66
/local.properties
77
GeneratedPluginRegistrant.java
8-
8+
.cxx/
99
# Remember to never publicly share your keystore.
1010
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
1111
key.properties

android/app/build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ if (localPropertiesFile.exists()) {
1313
}
1414

1515
android {
16-
compileSdkVersion 34
16+
namespace = "org.catrobat.paintroid"
17+
compileSdkVersion 35
1718
ndkVersion flutter.ndkVersion
1819

1920
compileOptions {
@@ -31,15 +32,16 @@ android {
3132

3233
defaultConfig {
3334
applicationId "org.catrobat.paintroidflutter"
34-
minSdkVersion 21
35-
targetSdkVersion 34
35+
minSdkVersion 24
36+
targetSdkVersion 35
3637
versionCode 1
3738
versionName "1.0.0"
3839
}
3940

4041
buildTypes {
4142
release {
4243
signingConfig signingConfigs.debug
44+
minifyEnabled true
4345
}
4446
}
4547
}
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="org.catrobat.paintroid">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32

43
<uses-permission android:name="android.permission.INTERNET" />
54
</manifest>

android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="org.catrobat.paintroid">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32

43
<uses-permission
54
android:name="android.permission.WRITE_EXTERNAL_STORAGE"

android/settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ pluginManagement {
1818

1919
plugins {
2020
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
21-
id "com.android.application" version "7.4.2" apply false
22-
id "org.jetbrains.kotlin.android" version "1.9.0" apply false
21+
id "com.android.application" version "8.1.0" apply false
22+
id "org.jetbrains.kotlin.android" version "1.8.21" apply false
2323
}
2424

2525
include ":app"

ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,6 @@ SPEC CHECKSUMS:
133133
SwiftyGif: 706c60cf65fa2bc5ee0313beece843c8eb8194d4
134134
url_launcher_ios: 5334b05cef931de560670eeae103fd3e431ac3fe
135135

136-
PODFILE CHECKSUM: 303789365c3a8d7bc562e5e65d7e8e15218ec5c6
136+
PODFILE CHECKSUM: aa9c826e174e713c4dad1b0d2110be4d87591fc5
137137

138138
COCOAPODS: 1.16.2

lib/core/commands/command_factory/command_factory_provider.g.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/commands/command_manager/command_manager_provider.g.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/commands/graphic_factory/graphic_factory_provider.g.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core/database/project_database.g.dart

Lines changed: 19 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)