Skip to content

Commit 0bc5234

Browse files
committed
Lua 5.5.0
1 parent 2986533 commit 0bc5234

82 files changed

Lines changed: 48161 additions & 0 deletions

Some content is hidden

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

README.md

Lines changed: 1170 additions & 0 deletions
Large diffs are not rendered by default.

app/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1+
<<<<<<< HEAD
12

3+
=======
4+
5+
>>>>>>> d5ebc43 (Lua 5.5.0)

app/build.gradle

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<<<<<<< HEAD
12
apply plugin: 'com.android.application'
23
android {
34
compileSdkVersion 30
@@ -47,4 +48,55 @@ android {
4748
dependencies {
4849
implementation fileTree(dir: 'libs', include: ['*.jar'])
4950
implementation 'androidx.annotation:annotation:1.4.0'
51+
=======
52+
apply plugin: 'com.android.application'
53+
android {
54+
compileSdkVersion 30
55+
defaultConfig {
56+
applicationId "com.androlua"
57+
minSdkVersion 18
58+
targetSdkVersion 30
59+
ndk {
60+
ldLibs "log"
61+
android.ndkVersion "22.1.7171670"
62+
abiFilters 'arm64-v8a'
63+
}
64+
}
65+
packagingOptions {
66+
exclude 'META-INF/proguard/androidx-annotations.pro'
67+
exclude 'META-INF/NOTICE'
68+
exclude 'META-INF/LICENSE'
69+
exclude 'META-INF/LICENSE.txt'
70+
exclude 'META-INF/NOTICE.txt'
71+
}
72+
buildTypes {
73+
release {
74+
minifyEnabled false
75+
debuggable false
76+
multiDexEnabled true
77+
}
78+
debug {
79+
debuggable true
80+
jniDebuggable true
81+
}
82+
83+
}
84+
externalNativeBuild {
85+
ndkBuild {
86+
path 'src/main/jni/android.mk'
87+
}
88+
}
89+
productFlavors {
90+
}
91+
compileOptions {
92+
targetCompatibility JavaVersion.VERSION_11
93+
sourceCompatibility JavaVersion.VERSION_11
94+
}
95+
ndkVersion '25.0.8775105'
96+
}
97+
98+
dependencies {
99+
implementation fileTree(dir: 'libs', include: ['*.jar'])
100+
implementation 'androidx.annotation:annotation:1.4.0'
101+
>>>>>>> d5ebc43 (Lua 5.5.0)
50102
}

0 commit comments

Comments
 (0)