Skip to content
Snippets Groups Projects

Resolve "Upgrade framework, build tools and dependencies"

12 files
+ 50
132
Compare changes
  • Side-by-side
  • Inline

Files

+ 4
3
@@ -16,7 +16,7 @@ if (gradlePropertiesFile.exists()) {
@@ -16,7 +16,7 @@ if (gradlePropertiesFile.exists()) {
def flutterRoot = localProperties.getProperty('flutter.sdk')
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
if (flutterRoot == null) {
throw new FileNotFoundException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
}
def appVersionCode = gradleProperties.getProperty('app.versionCode')
def appVersionCode = gradleProperties.getProperty('app.versionCode')
@@ -40,7 +40,8 @@ if (keystorePropertiesFile.exists()) {
@@ -40,7 +40,8 @@ if (keystorePropertiesFile.exists()) {
}
}
android {
android {
compileSdkVersion 28
compileSdkVersion 33
 
namespace "org.benoitharrault.memory"
sourceSets {
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
main.java.srcDirs += 'src/main/kotlin'
@@ -53,7 +54,7 @@ android {
@@ -53,7 +54,7 @@ android {
defaultConfig {
defaultConfig {
applicationId "org.benoitharrault.memory"
applicationId "org.benoitharrault.memory"
minSdkVersion 16
minSdkVersion 16
targetSdkVersion 28
targetSdkVersion 30
versionCode appVersionCode.toInteger()
versionCode appVersionCode.toInteger()
versionName appVersionName
versionName appVersionName
archivesBaseName = "$applicationId" + "_" + "$versionCode"
archivesBaseName = "$applicationId" + "_" + "$versionCode"
Loading