You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.2 KiB
104 lines
3.2 KiB
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'realm-android'
|
|
apply plugin: 'io.fabric'
|
|
|
|
repositories {
|
|
maven { url 'https://maven.fabric.io/public' }
|
|
}
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
buildToolsVersion "28.0.3"
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "net.pokeranalytics.android"
|
|
minSdkVersion 23
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "0.1"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
all*.exclude group: 'com.google.guava', module: 'listenablefuture'
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
// Android
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
implementation 'androidx.core:core-ktx:1.1.0-alpha04'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
|
|
implementation 'androidx.browser:browser:1.0.0'
|
|
|
|
|
|
// Places
|
|
implementation 'com.google.android.libraries.places:places:1.0.0'
|
|
|
|
// Firebase
|
|
implementation 'com.google.firebase:firebase-core:16.0.7'
|
|
|
|
// Crashlytics
|
|
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.9'
|
|
|
|
// Kotlin
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1'
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.1"
|
|
|
|
// Logs
|
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
|
|
|
// Test
|
|
androidTestImplementation 'androidx.test:core:1.0.0'
|
|
androidTestImplementation 'androidx.test:runner:1.1.0'
|
|
androidTestImplementation 'androidx.test:rules:1.1.0'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
|
|
|
|
// Required -- JUnit 4 framework
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation "org.mockito:mockito-core:1.10.19"
|
|
testImplementation "org.robolectric:robolectric:4.2"
|
|
testImplementation 'io.reactivex.rxjava2:rxjava:2.1.13'
|
|
|
|
testImplementation "org.powermock:powermock-module-junit4:1.6.6"
|
|
testImplementation "org.powermock:powermock-module-junit4-rule:1.6.6"
|
|
testImplementation "org.powermock:powermock-api-mockito:1.6.6"
|
|
testImplementation "org.powermock:powermock-classloading-xstream:1.6.6"
|
|
|
|
// Optional -- Robolectric environment
|
|
//testImplementation 'androidx.test:core:1.1.0'
|
|
// Optional -- Mockito framework
|
|
testImplementation 'com.android.support.test:runner:1.0.1'
|
|
testImplementation 'com.android.support.test:rules:1.0.1'
|
|
//testImplementation 'androidx.test.espresso:espresso-core:3.1.0'
|
|
|
|
|
|
}
|
|
|
|
apply plugin: 'com.google.gms.google-services' |