Commit 7a342380 by wjg

v2

parent 14c8c12e
......@@ -6,12 +6,20 @@ apply plugin: 'kotlin-kapt'
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
signingConfigs {
release {
storeFile file("../sign/hooloo.keystore")
storePassword 'hooloo123'
keyAlias 'hooloo'
keyPassword 'hooloo123'
}
}
defaultConfig {
applicationId "com.ihaoin.hooloo.device"
minSdkVersion 26
targetSdkVersion 30
versionCode 5
versionName "1.0.5"
versionCode 10
versionName "1.0.10"
ndk {
//选择要添加的对应 cpu 类型的 .so 库。
......@@ -28,6 +36,11 @@ android {
release {
minifyEnabled false
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 {
......
package com.ihaoin.hooloo.device.base;
public class AppConfig {
public static Boolean DEBUG = true; // TODO 编译环境
public static Boolean DEBUG = false; // TODO 编译环境
/** 点单屏编码, 1-菜单屏,2-交互屏 */
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