// +——————————————————————————————————— // | Created by Yunbao // +——————————————————————————————————— // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved. // +——————————————————————————————————— // | Author: https://gitee.com/yunbaokeji // +——————————————————————————————————— // | Date: 2022-04-30 // +——————————————————————————————————— apply plugin: 'com.android.application' android { compileSdkVersion rootProject.ext.android.compileSdkVersion buildToolsVersion rootProject.ext.android.buildToolsVersion signingConfigs { release { keyAlias 'phonelive' keyPassword 'phonelive' storeFile file('../yunbao.jks') storePassword 'phonelive' } } aaptOptions { cruncherEnabled = false useNewCruncher = false } defaultConfig { applicationId "com.yunbao.shortvideo" 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') }