Skip to content

Instantly share code, notes, and snippets.

@locskot
Created November 12, 2019 12:43
Show Gist options
  • Save locskot/c7579f8bf0b269b0a9b5dca64c8217af to your computer and use it in GitHub Desktop.
Save locskot/c7579f8bf0b269b0a9b5dca64c8217af to your computer and use it in GitHub Desktop.
group 'com.baseflow.permissionhandler'
version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
jcenter()
maven { url 'https://maven.google.com' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
}
}
rootProject.allprojects {
repositories {
google()
jcenter()
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 16
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
disable 'InvalidPackage'
}
}
dependencies {
implementation 'androidx.annotation:annotation:1.1.0'
implementation 'androidx.core:core:1.0.2'
}
repositories {
google()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment