// +---------------------------------------------------------------------- // | Created by Yunbao // +---------------------------------------------------------------------- // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved. // +---------------------------------------------------------------------- // | Author: https://gitee.com/yunbaokji/ // +---------------------------------------------------------------------- // | Date: 2022-02-17 // +---------------------------------------------------------------------- apply plugin: 'com.android.application' android { compileSdkVersion rootProject.ext.android.compileSdkVersion buildToolsVersion rootProject.ext.android.buildToolsVersion signingConfigs { release { keyAlias 'phonelive' keyPassword 'phonelive' storeFile file('../ybky.jks') storePassword 'phonelive' } } aaptOptions { cruncherEnabled = false useNewCruncher = false } defaultConfig { applicationId "com.yunbao.phonelive" minSdkVersion rootProject.ext.android.minSdkVersion targetSdkVersion 28 versionCode rootProject.ext.android.versionCode versionName rootProject.ext.android.versionName manifestPlaceholders = rootProject.ext.manifestPlaceholders multiDexEnabled true ndk { abiFilters "armeabi-v7a","arm64-v8a" } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } debug { signingConfig signingConfigs.release } } lintOptions { checkReleaseBuilds false abortOnError false } } repositories { flatDir { dirs 'libs', '../libs' } } dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') //直播 compile project(':main') }