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
}
}
}
@@ -0,0 +1,4 @@
<manifest xmlns:android="https://schemas.android.com/apk/res/android"
xmlns:tools="https://schemas.android.com/tools"
package="my.test.project" >
</manifest>
@@ -0,0 +1,30 @@
group 'Again'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenLocal()
maven {
url='https://dl.bintray.com/kotlin/kotlin-eap-1.1'
}
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:2.3.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.0"
}
}
ext {
androidBuildToolsVersion = '23.0.1'
}
allprojects {
repositories {
mavenLocal()
maven {
url='https://dl.bintray.com/kotlin/kotlin-eap-1.1'
}
jcenter()
}
}
@@ -0,0 +1,21 @@
group 'Again'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
maven {
url 'https://dl.bintray.com/kotlin/kotlin-dev'
}
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.40")
}
}
apply plugin: 'kotlin2js'
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-js:1.1.0"
}
@@ -0,0 +1,3 @@
rootProject.name = "android-js-test"
include ':android-module'
include ':js-module'