| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- 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.")
- }
- 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.android.application'
- apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
- android {
- compileSdkVersion 27
- lintOptions {
- disable 'InvalidPackage'
- }
- defaultConfig {
- applicationId "com.izouma.mobilecybergames"
- minSdkVersion 19
- targetSdkVersion 27
- versionCode flutterVersionCode.toInteger()
- versionName flutterVersionName
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- ndk {
- // abiFilters 'armeabi-v7a'
- }
- manifestPlaceholders = [
- JPUSH_PKGNAME : applicationId,
- JPUSH_APPKEY : "868cc9036e14c71e2b698f46",
- JPUSH_CHANNEL : "developer-default",
- ]
- }
- signingConfigs {
- debug {
- storeFile file('debug.jks')
- }
- release {
- storeFile file('zouma.jks')
- storePassword "zouma123"
- keyAlias "zouma"
- keyPassword "zouma123"
- }
- }
- buildTypes {
- debug {
- signingConfig signingConfigs.debug
- }
- release {
- signingConfig signingConfigs.release
- minifyEnabled false
- useProguard true
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- flutter {
- source '../..'
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation fileTree(dir: 'libs', include: ['*.aar'])
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'com.android.support.test:runner:1.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
- }
|