1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/summerly-MusicPlayer

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
module_build_scripts.gradle 1.9 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
伯言 Отправлено 04.09.2020 19:42 999d604
if (isIndependentApk.toBoolean()) {
apply plugin: 'com.android.application'
} else {
apply plugin: 'com.android.library'
}
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion compile_sdk.toInteger()
defaultConfig {
minSdkVersion min_sdk.toInteger()
targetSdkVersion target_sdk
versionCode 1
versionName "1.0"
resourcePrefix project.getName()
if (isIndependentApk.toBoolean()) {
applicationId "tech.summerly.quiet." + project.getName()
}
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
sourceSets {
main {
if (isIndependentApk.toBoolean()) {
manifest.srcFile 'src/main/AndroidManifest_debug.xml'
} else {
manifest.srcFile 'src/main/AndroidManifest.xml'
java {
exclude 'debug/**'
}
}
}
}
packagingOptions {
exclude 'META-INF/main.kotlin_module'
}
compileOptions {
targetCompatibility 1.7
sourceCompatibility 1.7
}
}
kotlin {
experimental {
coroutines "enable"
}
}
kapt {
arguments {
arg("moduleName", project.getName())
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
kapt 'com.alibaba:arouter-compiler:1.1.4'
implementation project(path: ':commonlib')
}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/summerly-MusicPlayer.git
git@api.gitlife.ru:oschina-mirror/summerly-MusicPlayer.git
oschina-mirror
summerly-MusicPlayer
summerly-MusicPlayer
master