109 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| plugins {
 | |
|     id 'com.android.application'
 | |
|     id 'androidx.navigation.safeargs'
 | |
| }
 | |
| 
 | |
| Properties properties = new Properties()
 | |
| def propertiesFile = project.rootProject.file('local.properties')
 | |
| if (propertiesFile.exists()) {
 | |
|     properties.load(propertiesFile.newDataInputStream())
 | |
| }
 | |
| def appCenterLocalSecret = properties.getProperty('appCenter.localSecret')
 | |
| def appCenterEnvSecret = System.getenv('APPCENTER_SECRET')
 | |
| def appCenterSecret = appCenterLocalSecret != null ? appCenterLocalSecret : appCenterEnvSecret != null ? appCenterEnvSecret : ""
 | |
| def appCenterSdkVersion = '3.3.0'
 | |
| def nav_version = '2.3.5'
 | |
| def room_version = '2.3.0'
 | |
| def rxjava_version = '3.0.0'
 | |
| def flipper_version = '0.87.0'
 | |
| def soloader_version = '0.10.1'
 | |
| def gson_version = '2.8.6'
 | |
| 
 | |
| android {
 | |
|     compileSdkVersion 30
 | |
|     buildToolsVersion '30.0.2'
 | |
| 
 | |
|     defaultConfig {
 | |
|         applicationId "com.majinnaibu.monstercards"
 | |
|         minSdkVersion 22
 | |
|         targetSdkVersion 30
 | |
|         versionCode 1
 | |
|         versionName "1.0"
 | |
|         buildConfigField "String", "APPCENTER_SECRET", "\"${appCenterSecret}\""
 | |
| 
 | |
|         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
 | |
| 
 | |
|         javaCompileOptions {
 | |
|             annotationProcessorOptions {
 | |
|                 arguments += ["room.schemaLocation": "$projectDir/schemas".toString()]
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     buildTypes {
 | |
|         release {
 | |
|             // Enables code shrinking, obfuscation, and optimization for only
 | |
|             // your project's release build type.
 | |
|             minifyEnabled true
 | |
| 
 | |
|             // Enables resource shrinking, which is performed by the
 | |
|             // Android Gradle plugin.
 | |
|             shrinkResources true
 | |
| 
 | |
|             // Includes the default ProGuard rules files that are packaged with
 | |
|             // the Android Gradle plugin. To learn more, go to the section about
 | |
|             // R8 configuration files.
 | |
|             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
 | |
|         }
 | |
|     }
 | |
|     compileOptions {
 | |
|         sourceCompatibility JavaVersion.VERSION_1_8
 | |
|         targetCompatibility JavaVersion.VERSION_1_8
 | |
|     }
 | |
|     buildFeatures {
 | |
|         viewBinding true
 | |
|     }
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     // Included libs
 | |
|     implementation fileTree(dir: "libs", include: ["*.jar"])
 | |
| 
 | |
|     // Google
 | |
|     implementation 'androidx.appcompat:appcompat:1.2.0'
 | |
|     implementation 'com.google.android.material:material:1.3.0'
 | |
|     implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
 | |
|     implementation "androidx.navigation:navigation-fragment:$nav_version"
 | |
|     implementation "androidx.navigation:navigation-ui:$nav_version"
 | |
|     implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
 | |
|     implementation 'androidx.legacy:legacy-support-v4:1.0.0'
 | |
|     implementation 'androidx.recyclerview:recyclerview:1.1.0'
 | |
|     implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
 | |
|     implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
 | |
| 
 | |
|     // Testing
 | |
|     testImplementation 'junit:junit:4.13.2'
 | |
|     androidTestImplementation 'androidx.test.ext:junit:1.1.2'
 | |
|     androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
 | |
| 
 | |
|     // Room DB
 | |
|     implementation "io.reactivex.rxjava3:rxjava:$rxjava_version"
 | |
|     implementation "io.reactivex.rxjava3:rxandroid:$rxjava_version"
 | |
|     implementation "androidx.room:room-runtime:$room_version"
 | |
|     annotationProcessor "androidx.room:room-compiler:$room_version"
 | |
|     implementation "androidx.room:room-rxjava3:$room_version"
 | |
|     //testImplementation "androidx.room:room-testing:$room_version"
 | |
| 
 | |
|     // AppCenter
 | |
|     debugImplementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}"
 | |
|     debugImplementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"
 | |
| 
 | |
|     // Flipper
 | |
|     debugImplementation "com.facebook.flipper:flipper:$flipper_version"
 | |
|     debugImplementation "com.facebook.soloader:soloader:$soloader_version"
 | |
|     releaseImplementation "com.facebook.flipper:flipper-noop:$flipper_version"
 | |
| 
 | |
|     // Other 3rd Party
 | |
|     implementation 'com.atlassian.commonmark:commonmark:0.15.2'
 | |
|     implementation "com.google.code.gson:gson:$gson_version"
 | |
| } |