-
-
Save locskot/df130c9c3882e729f2e7500594854347 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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