Skip to content

Commit

Permalink
易控V1.0.3-dev
Browse files Browse the repository at this point in the history
仍为测试版本
此版本修复了设置默认打开后崩溃的问题
此版本开始支持arm64、arm32、x86、x86_64位系统
  • Loading branch information
mingzhixian committed Aug 28, 2023
1 parent c16019b commit 3cf356d
Show file tree
Hide file tree
Showing 10 changed files with 63 additions and 56 deletions.
Binary file modified easycontrol/.gradle/8.0/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified easycontrol/.gradle/8.0/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified easycontrol/.gradle/8.0/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified easycontrol/.gradle/8.0/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file modified easycontrol/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified easycontrol/.gradle/file-system.probe
Binary file not shown.
103 changes: 54 additions & 49 deletions easycontrol/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions easycontrol/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId "top.saymzx.easycontrol.app"
minSdk 23
targetSdk 33
versionCode 10002
versionName "1.0.2_dev"
versionCode 10003
versionName "1.0.3_dev"
resConfigs "zh"
resConfigs "xhdpi"
javaCompileOptions {
Expand All @@ -33,7 +33,7 @@ android {
buildTypes {
release {
ndk {
abiFilter "arm64-v8a"
abiFilters "arm64-v8a","armeabi-v7a","x86","x86_64"
}
debuggable false
minifyEnabled true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ class MasterActivity : Activity() {
appData.mainScope.launch {
withContext(Dispatchers.IO) {
val devices = appData.dbHelper.devices().getById(appData.setting.defaultDevice)
if (devices.isNotEmpty()) FloatWindow(devices[0])
withContext(Dispatchers.Main){
if (devices.isNotEmpty()) FloatWindow(devices[0])
}
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions easycontrol/server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ android {
minSdk 23
targetSdk 33
applicationId 'top.saymzx.easycontrol.server'
versionCode 10002
versionName '1.0.2'
versionCode 10003
versionName '1.0.3'
}

buildTypes {
release {
ndk {
abiFilter "arm64-v8a"
abiFilters "arm64-v8a", "armeabi-v7a", "x86", "x86_64"
}
debuggable false
minifyEnabled true
Expand Down

0 comments on commit 3cf356d

Please sign in to comment.