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.
42 lines
869 B
42 lines
869 B
buildscript {
|
|
repositories {
|
|
maven {
|
|
url "https://plugins.gradle.org/m2/"
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath "net.ltgt.gradle:gradle-errorprone-plugin:0.0.13"
|
|
}
|
|
}
|
|
|
|
apply plugin: "net.ltgt.errorprone"
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion '28.0.3'
|
|
|
|
defaultConfig {
|
|
applicationId 'com.linkedin.dexmaker'
|
|
minSdkVersion 8
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName VERSION_NAME
|
|
|
|
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":dexmaker")
|
|
|
|
//noinspection GradleDependency
|
|
androidTestImplementation 'com.android.support.test:runner:0.5'
|
|
androidTestImplementation 'junit:junit:4.12'
|
|
}
|