Migrate GradleFacetImportingTest to testdata

This commit is contained in:
Andrey Uskov
2019-03-29 14:44:07 +03:00
parent 0f60daec25
commit ed0dfaec36
59 changed files with 1571 additions and 1699 deletions
@@ -0,0 +1,45 @@
group 'Again'
version '1.0-SNAPSHOT'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:2.3.0"
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "23.0.1"
defaultConfig {
minSdkVersion 11
targetSdkVersion 23
versionCode 1002003
versionName version
}
dataBinding {
enabled = true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
buildTypes {
debug {
applicationIdSuffix ".debug"
versionNameSuffix "-debug"
}
release {
minifyEnabled true
shrinkResources true
}
}
}