Skip to content

Instantly share code, notes, and snippets.

@locskot
Created November 12, 2019 12:42
Show Gist options
  • Save locskot/df130c9c3882e729f2e7500594854347 to your computer and use it in GitHub Desktop.
Save locskot/df130c9c3882e729f2e7500594854347 to your computer and use it in GitHub Desktop.
group 'io.github.ponnamkarthik.toast.fluttertoast'
version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
}
}
rootProject.allprojects {
repositories {
google()
jcenter()
}
// gradle.projectsEvaluated {
// tasks.withType(JavaCompile) {
// options.compilerArgs << "-Xlint:deprecation"
// }
// }
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 16
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
disable 'InvalidPackage'
}
}
dependencies {
// implementation fileTree(dir: 'libs', include: ['*.jar'])
// implementation 'androidx.core:core:1.0.2'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment