123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- group 'com.shuangyubang.mofun_flutter_plugin_video'
- version '1.0-SNAPSHOT'
-
- buildscript {
- ext.kotlin_version = '1.3.31'
- repositories {
- google()
- jcenter()
- }
-
- dependencies {
- classpath 'com.android.tools.build:gradle:3.4.0'
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- }
- }
-
- rootProject.allprojects {
- repositories {
- google()
- jcenter()
- }
- }
-
- apply plugin: 'com.android.library'
- apply plugin: 'kotlin-android'
-
- android {
- compileSdkVersion 28
-
- sourceSets {
- main.java.srcDirs += 'src/main/kotlin'
- }
- defaultConfig {
- minSdkVersion 16
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- lintOptions {
- disable 'InvalidPackage'
- }
- }
-
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'com.android.support.constraint:constraint-layout:1.1.3'
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
- }
|