Skip to content

Commit bdd1682

Browse files
committed
fogle! (2)
1 parent 17db40d commit bdd1682

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
},
99
"ghcr.io/nordcominc/devcontainer-features/android-sdk:1": {
1010
"platform": "34",
11-
"build_tools": "34.0.0"
11+
"build_tools": "34.0.0",
12+
"extra_packages": "ndk;28.0.13004108"
1213
}
1314
},
1415
"customizations": {

app/build.gradle.kts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,18 @@ android {
66
namespace = "com.fcl.plugin.thatmg393.fogle"
77
compileSdk = 34
88

9+
ndkVersion = "28.0.13004108"
10+
911
defaultConfig {
1012
applicationId = "com.fcl.plugin.thatmg393.fogle"
1113
minSdk = 26
1214
targetSdk = 34
1315
versionCode = 1
1416
versionName = "0.0.1"
17+
18+
ndk {
19+
abiFilters += listOf("armeabi-v7a", "arm64-v8a")
20+
}
1521
}
1622

1723
buildTypes {
@@ -54,6 +60,12 @@ android {
5460
useLegacyPackaging = true
5561
}
5662
}
63+
64+
externalNativeBuild {
65+
cmake {
66+
path = file("../FOGLTLOGLES/CMKeLists.txt")
67+
}
68+
}
5769
}
5870

5971
dependencies {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
2-
org.gradle.configuration-cache=true
2+
# org.gradle.configuration-cache=true
33
org.gradle.cache=true
44

55
android.useAndroidX=true

0 commit comments

Comments
 (0)