Commit 7a342380 by wjg

v2

parent 14c8c12e
...@@ -6,12 +6,20 @@ apply plugin: 'kotlin-kapt' ...@@ -6,12 +6,20 @@ apply plugin: 'kotlin-kapt'
android { android {
compileSdkVersion 30 compileSdkVersion 30
buildToolsVersion "30.0.3" buildToolsVersion "30.0.3"
signingConfigs {
release {
storeFile file("../sign/hooloo.keystore")
storePassword 'hooloo123'
keyAlias 'hooloo'
keyPassword 'hooloo123'
}
}
defaultConfig { defaultConfig {
applicationId "com.ihaoin.hooloo.device" applicationId "com.ihaoin.hooloo.device"
minSdkVersion 26 minSdkVersion 26
targetSdkVersion 30 targetSdkVersion 30
versionCode 5 versionCode 10
versionName "1.0.5" versionName "1.0.10"
ndk { ndk {
//选择要添加的对应 cpu 类型的 .so 库。 //选择要添加的对应 cpu 类型的 .so 库。
...@@ -28,6 +36,11 @@ android { ...@@ -28,6 +36,11 @@ android {
release { release {
minifyEnabled false minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
} }
} }
compileOptions { compileOptions {
......
package com.ihaoin.hooloo.device.base; package com.ihaoin.hooloo.device.base;
public class AppConfig { public class AppConfig {
public static Boolean DEBUG = true; // TODO 编译环境 public static Boolean DEBUG = false; // TODO 编译环境
/** 点单屏编码, 1-菜单屏,2-交互屏 */ /** 点单屏编码, 1-菜单屏,2-交互屏 */
public static Integer DEFAULT_SCREEN_NO = 1; // TODO 编译点单屏编码 public static Integer DEFAULT_SCREEN_NO = 1; // TODO 编译点单屏编码
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment