Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
machine
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hooloo
android
machine
Commits
7a342380
Commit
7a342380
authored
Nov 30, 2022
by
wjg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
v2
parent
14c8c12e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
3 deletions
+16
-3
app/build.gradle
+15
-2
app/src/main/java/com/ihaoin/hooloo/device/base/AppConfig.java
+1
-1
No files found.
app/build.gradle
View file @
7a342380
...
@@ -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
{
...
...
app/src/main/java/com/ihaoin/hooloo/device/base/AppConfig.java
View file @
7a342380
package
com
.
ihaoin
.
hooloo
.
device
.
base
;
package
com
.
ihaoin
.
hooloo
.
device
.
base
;
public
class
AppConfig
{
public
class
AppConfig
{
public
static
Boolean
DEBUG
=
tru
e
;
// TODO 编译环境
public
static
Boolean
DEBUG
=
fals
e
;
// TODO 编译环境
/** 点单屏编码, 1-菜单屏,2-交互屏 */
/** 点单屏编码, 1-菜单屏,2-交互屏 */
public
static
Integer
DEFAULT_SCREEN_NO
=
1
;
// TODO 编译点单屏编码
public
static
Integer
DEFAULT_SCREEN_NO
=
1
;
// TODO 编译点单屏编码
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment