12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- def localProperties = new Properties()
- def localPropertiesFile = rootProject.file('local.properties')
- if (localPropertiesFile.exists()) {
- localPropertiesFile.withReader('UTF-8') {
- reader -> localProperties.load(reader)
- }
- }
-
- def flutterRoot = localProperties.getProperty('flutter.sdk')
- if (flutterRoot == null) {
- //throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
- throw FileNotFoundException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
- }
-
- def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
- if (flutterVersionCode == null) {
- flutterVersionCode = '1'
- }
-
- def flutterVersionName = localProperties.getProperty('flutter.versionName')
- if (flutterVersionName == null) {
- flutterVersionName = '1.0'
- }
-
- apply plugin: 'com.google.gms.google-services'
- apply plugin: 'com.android.application'
- apply plugin: 'kotlin-android'
- apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
- apply plugin: 'com.google.firebase.crashlytics'
-
- android {
- compileSdkVersion flutter.compileSdkVersion
- compileSdkVersion 33
- ndkVersion flutter.ndkVersion
-
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
-
- defaultConfig {
- // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
- applicationId "com.icp.tower"
- // You can update the following values to match your application needs.
- // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
- //minSdkVersion flutter.minSdkVersion
- minSdkVersion 28
- //compiledSdkVersion 33
- targetSdkVersion flutter.targetSdkVersion
- versionCode flutterVersionCode.toInteger()
- versionName flutterVersionName
- multiDexEnabled true
- }
-
- signingConfigs {
- release {
- storeFile file('D:/Android Studio Projects/tower/tower_keystore.jks')
- storePassword '123123'
- keyAlias 'tower_keystore'
- keyPassword '123123'
- }
- }
-
- buildTypes {
- release {
- // TODO: Add your own signing config for the release build.
- // Signing with the debug keys for now, so `flutter run --release` works.
- //signingConfig signingConfigs.debug
- signingConfig signingConfigs.release
- }
- }
- }
-
- flutter {
- source '../..'
- }
-
- dependencies{
- implementation 'com.android.support:multidex:1.0.3'
- implementation platform('com.google.firebase:firebase-bom:30.2.0')
- implementation 'com.google.firebase:firebase-analytics'
- }
|