1
0
This commit is contained in:
2021-11-18 10:22:47 +08:00
parent 9b000db778
commit 3f2060c8b2
109 changed files with 1047 additions and 714 deletions

2
2048/entry/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/build
/node_modules

24
2048/entry/build.gradle Normal file
View File

@@ -0,0 +1,24 @@
apply plugin: 'com.huawei.ohos.hap'
apply plugin: 'com.huawei.ohos.decctest'
//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510
ohos {
compileSdkVersion 7
defaultConfig {
compatibleSdkVersion 7
}
buildTypes {
release {
proguardOpt {
proguardEnabled false
rulesFiles 'proguard-rules.pro'
}
}
}
}
dependencies {
testImplementation 'junit:junit:4.13.1'
}
decc {
supportType = ['html','xml']
}

1
2048/entry/proguard-rules.pro vendored Normal file
View File

@@ -0,0 +1 @@
# config module specific ProGuard rules here.

View File

@@ -0,0 +1,29 @@
{
"app": {
"bundleName": "com.xcl2048.myapplication",
"vendor": "xcl2048",
"version": {
"code": 1000000,
"name": "1.0.0"
}
},
"deviceConfig": {},
"module": {
"deviceType": [
"liteWearable"
],
"distro": {
"deliveryWithInstall": true,
"moduleName": "entry",
"moduleType": "entry"
},
"js": [
{
"pages": [
"pages/index/index"
],
"name": "default"
}
]
}
}

View File

@@ -0,0 +1,6 @@
{
"strings": {
"hello": "Hello",
"world": "World"
}
}

View File

@@ -0,0 +1,6 @@
{
"strings": {
"hello": "您好",
"world": "世界"
}
}

View File

@@ -59,4 +59,4 @@
.gameover{
font-size: 40px;
color: #FF7500;
}
}

View File

@@ -20,4 +20,4 @@
</div>
</stack>
<input class="btn" type="button" value="Restart!" onclick="onInit" ></input>
</div>
</div>

View File

@@ -1,8 +1,8 @@
{
"string": [
{
"name": "entry_MainAbility",
"value": "entry_MainAbility"
"name": "xcl2048",
"value": "xcl2048"
}
]
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB