Skip to content

Commit a8dfe03

Browse files
committed
更新Lua 5.4.4
1 parent fbad8ff commit a8dfe03

1,133 files changed

Lines changed: 493243 additions & 1 deletion

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Built application files
2+
*.apk
3+
*.ap_
4+
*.rar
5+
*.zip
6+
7+
# Files for the Dalvik VM
8+
*.dex
9+
10+
# Java class files
11+
*.class
12+
13+
# Generated files
14+
bin/
15+
gen/
16+
obj/
17+
18+
# Eclipse Generate files
19+
.classpath
20+
.project
21+
.settings/
22+
23+
24+
# Gradle files
25+
*.iml
26+
.gradle/
27+
build/
28+
/*/build/
29+
app/.externalNativeBuild/
30+
app/src/main/libs/
31+
32+
# Local configuration file (sdk path, etc)
33+
local.properties
34+
gradle.properties
35+
*.keystore
36+
37+
# Proguard folder generated by Eclipse
38+
proguard/
39+
40+
# Log Files
41+
*.log
42+
43+
# Make
44+
build*/
45+
46+
# Android Studio
47+
.idea/*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# AndroLua-原版更新日志
1+
# AndroLua-
22
lua 5.3.3 for android pro
33

44
4.2.0

app/build.gradle

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
apply plugin: 'com.android.application'
2+
android {
3+
compileSdkVersion 30
4+
defaultConfig {
5+
applicationId "com.androlua"
6+
minSdkVersion 18
7+
targetSdkVersion 30
8+
ndk {
9+
ldLibs "log"
10+
android.ndkVersion "22.1.7171670"
11+
abiFilters 'arm64-v8a'
12+
}
13+
}
14+
packagingOptions {
15+
exclude 'META-INF/proguard/androidx-annotations.pro'
16+
exclude 'META-INF/NOTICE'
17+
exclude 'META-INF/LICENSE'
18+
exclude 'META-INF/LICENSE.txt'
19+
exclude 'META-INF/NOTICE.txt'
20+
}
21+
buildTypes {
22+
release {
23+
minifyEnabled false
24+
debuggable false
25+
multiDexEnabled true
26+
}
27+
debug {
28+
debuggable true
29+
jniDebuggable true
30+
}
31+
32+
}
33+
externalNativeBuild {
34+
ndkBuild {
35+
path 'src/main/jni/android.mk'
36+
}
37+
}
38+
productFlavors {
39+
}
40+
compileOptions {
41+
targetCompatibility JavaVersion.VERSION_11
42+
sourceCompatibility JavaVersion.VERSION_11
43+
}
44+
ndkVersion '25.0.8775105'
45+
}
46+
47+
dependencies {
48+
implementation fileTree(dir: 'libs', include: ['*.jar'])
49+
implementation 'androidx.annotation:annotation:1.4.0'
50+
}

app/gradlew

Lines changed: 160 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/gradlew.bat

Lines changed: 90 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)