2019-05-10 06:54:05 +00:00
|
|
|
group 'com.pkmnapps.nearby_connections'
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:3.4.0'
|
|
|
|
}
|
2019-08-11 15:57:39 +00:00
|
|
|
subprojects {
|
|
|
|
project.configurations.all {
|
|
|
|
resolutionStrategy.eachDependency { details ->
|
|
|
|
if (details.requested.group == 'androidx.core'
|
|
|
|
&& !details.requested.name.contains('androidx') ) {
|
|
|
|
details.useVersion "1.0.1"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-10 06:54:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 16
|
2019-08-11 15:57:39 +00:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2019-05-10 06:54:05 +00:00
|
|
|
}
|
|
|
|
lintOptions {
|
|
|
|
disable 'InvalidPackage'
|
|
|
|
}
|
2019-05-10 07:33:41 +00:00
|
|
|
dependencies{
|
|
|
|
api 'com.google.android.gms:play-services-nearby:16.0.0'
|
|
|
|
}
|
2019-05-10 06:54:05 +00:00
|
|
|
}
|