| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- group 'cn.i2edu.speech_plugin'
- version '1.0-SNAPSHOT'
- buildscript {
- ext.kotlin_version = '1.3.20'
- repositories {
- google()
- jcenter()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.2.1'
- 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"
- }
- lintOptions {
- disable 'InvalidPackage'
- }
- }
- dependencies {
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
- implementation 'com.googlecode.mp4parser:isoparser:1.0-RC-37'
- api "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
- implementation 'com.alibaba:fastjson:1.1.71.android'
- implementation fileTree(dir: 'src\\main\\jniLibs', include: ['*.aar', '*.jar'], exclude: [])
- }
|