app/app/build.gradle

69 lines
1.9 KiB
Groovy
Raw Permalink Normal View History

2020-02-01 20:43:56 -08:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
2020-05-13 13:36:32 -07:00
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.10.1"
}
}
apply plugin: 'org.jetbrains.dokka'
2020-02-01 20:43:56 -08:00
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.danilafe.fencelessgrazing"
minSdkVersion 19
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
2020-05-13 13:36:32 -07:00
dokka {
outputFormat = 'html'
outputDirectory = "$buildDir/dokka"
2020-05-13 16:47:16 -07:00
configuration {
includeNonPublic = true
}
2020-05-13 13:36:32 -07:00
}
2020-02-16 16:36:25 -08:00
repositories {
mavenCentral()
2020-05-12 20:10:51 -07:00
google()
maven { url 'https://jitpack.io' }
2020-02-16 16:36:25 -08:00
}
2020-02-01 20:43:56 -08:00
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
2020-05-12 20:10:51 -07:00
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.2.0'
2020-02-01 20:43:56 -08:00
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.android.volley:volley:1.1.1'
implementation 'com.google.code.gson:gson:2.8.6'
testImplementation 'junit:junit:4.12'
2020-05-12 20:10:51 -07:00
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
2020-02-01 20:43:56 -08:00
implementation 'androidx.recyclerview:recyclerview:1.1.0'
2020-02-16 16:36:25 -08:00
implementation 'org.osmdroid:osmdroid-android:6.1.5'
2020-05-12 20:10:51 -07:00
implementation "androidx.preference:preference-ktx:1.1.1"
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
2020-05-12 20:10:51 -07:00
implementation 'com.google.android.material:material:1.1.0'
2020-02-01 20:43:56 -08:00
}