uni_android_plugin_project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
apply plugin: 'com.android.application'
android { compileSdkVersion 29 buildToolsVersion '28.0.3' defaultConfig { applicationId "com.android.UniPlugin" minSdkVersion 21 targetSdkVersion 26 //建议此属性值设为21 io.dcloud.PandoraEntry 作为apk入口时 必须设置 targetSDKVersion>=21 沉浸式才生效
versionCode 1 versionName "1.0" multiDexEnabled true ndk { abiFilters 'x86','armeabi-v7a' } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } }
signingConfigs { config { // keyAlias 'key0'
// keyPassword '123456'
// storeFile file('test.jks')
// storePassword '123456'
// v1SigningEnabled true
// v2SigningEnabled true
keyAlias 'test.keystore' keyPassword '666666' storeFile file('test.keystore') storePassword '666666' v1SigningEnabled true v2SigningEnabled true } }
buildTypes { release { signingConfig signingConfigs.config zipAlignEnabled true minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } debug { signingConfig signingConfigs.config zipAlignEnabled true minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } //使用uniapp时,需复制下面代码
/*代码开始*/ aaptOptions { additionalParameters '--auto-add-overlay' //noCompress 'foo', 'bar'
ignoreAssetsPattern "!.svn:!.git:.*:!CVS:!thumbs.db:!picasa.ini:!*.scc:*~" } /*代码结束*/ } repositories { flatDir { dirs 'libs' } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation fileTree(dir: 'libs', include: ['*.aar'])
implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.appcompat:appcompat:1.0.0'
/*uniapp所需库-----------------------开始*/ implementation 'androidx.recyclerview:recyclerview:1.0.0' implementation 'com.facebook.fresco:fresco:1.13.0' implementation "com.facebook.fresco:animated-gif:1.13.0" /*uniapp所需库-----------------------结束*/ // 基座需要,必须添加
implementation 'com.github.bumptech.glide:glide:4.9.0' implementation 'com.alibaba:fastjson:1.1.46.android'
// 添加uni-app插件
implementation project(':zmt_module') implementation project(':uniplugin_component') implementation project(':uniplugin_module') implementation project(':uniplugin_module_ox') implementation project(':uniplugin_richalert') }
|