63 lines
2.3 KiB
Groovy
63 lines
2.3 KiB
Groovy
|
/*
|
||
|
* Copyright (c) 2019, norangebit
|
||
|
*
|
||
|
* This file is part of solar-system.
|
||
|
*
|
||
|
* solar-system is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* solar-system is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with solar-system. If not, see <http://www.gnu.org/licenses/>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
apply plugin: 'kotlin-android'
|
||
|
|
||
|
apply plugin: 'kotlin-android-extensions'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 28
|
||
|
defaultConfig {
|
||
|
applicationId "it.norangeb.solarsystem"
|
||
|
minSdkVersion 26
|
||
|
targetSdkVersion 28
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
||
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
||
|
implementation 'com.android.support:design:28.0.0'
|
||
|
testImplementation 'junit:junit:4.12'
|
||
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
||
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
||
|
implementation "com.google.ar.sceneform.ux:sceneform-ux:1.6.0"
|
||
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.0"
|
||
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.1.0"
|
||
|
implementation 'com.google.ar.sceneform:assets:1.6.0'
|
||
|
}
|