blob: 7c4f9924b02eff071a015e908169f2bfdb62021e [file] [log] [blame]
group 'io.flutter.plugins.firebase.storage'
version '1.0-SNAPSHOT'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
}
}
rootProject.allprojects {
repositories {
jcenter()
}
}
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion '25.0.3'
defaultConfig {
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
lintOptions {
disable 'InvalidPackage'
}
dependencies {
compile 'com.google.firebase:firebase-core:11.4.+'
compile 'com.google.firebase:firebase-storage:11.4.+'
}
}