Skip to content

Commit 0d14d04

Browse files
authored
Merge pull request #14 from DerGoogler/1.6.1
1.6.1
2 parents 69a3551 + b5e275a commit 0d14d04

File tree

163 files changed

+7011
-3877
lines changed

Some content is hidden

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

163 files changed

+7011
-3877
lines changed

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
package.json
22
package-lock.json
33
node_modules/
4-
__pycache__/
4+
__pycache__/
5+
6+
# Ignore www bundles
7+
www/bundle/*
8+
www/files/*
9+
10+
Browser/*
11+
!Browser/.gitkeep

Android/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ gen/
1414
*.cxx
1515
app/.cxx/*
1616
app/src/main/assets/www/*
17-
!app/src/main/assets/www/index.html
17+
!/app/src/main/assets/**/.gitkeep
1818

1919
# Local configuration file (sdk path, etc)
2020
local.properties

Android/app/build.gradle

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,17 @@ android {
1414
applicationId 'com.dergoogler.mmrl'
1515
minSdk 26
1616
targetSdk 33
17-
versionName "1.6.0"
18-
versionCode 160
17+
versionName '1.6.1'
18+
versionCode 161
19+
externalNativeBuild {
20+
cmake {
21+
cppFlags "-llog"
22+
arguments "-DANDROID_STL=c++_shared"
23+
}
24+
}
25+
ndk {
26+
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
27+
}
1928
}
2029
buildTypes {
2130
release {
@@ -34,11 +43,19 @@ android {
3443
buildConfigField "String", "BASE_URL", "\"leer\""
3544
}
3645
}
46+
externalNativeBuild {
47+
cmake {
48+
path = file("src/main/cpp/CMakeLists.txt")
49+
}
50+
}
3751
compileOptions {
3852
sourceCompatibility JavaVersion.VERSION_1_8
3953
targetCompatibility JavaVersion.VERSION_1_8
4054
}
4155
packagingOptions {
56+
jniLibs {
57+
keepDebugSymbols += ['*/armeabi/*.so', '*/armeabi-v7a/*.so', '*/arm64-v8a/*.so', '*/mips/*.so', '*/mips64/*.so', '*/x86/*.so', '*/x86_64/*.so']
58+
}
4259
resources {
4360
excludes += ['META-INF/DEPENDENCIES.txt', 'META-INF/DEPENDENCIES', 'META-INF/LICENSE', 'META-INF/LICENSE.txt', 'META-INF/MANIFEST.MF', 'META-INF/NOTICE', 'META-INF/NOTICE.txt', 'META-INF/ASL2.0']
4461
}

Android/app/proguard-rules.pro

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,7 @@
1818

1919
# These clases contain references to cordova webView
2020
-keep class org.apache.cordova.** {*; }
21-
-keep class org.apache.cordova.*
21+
-keep class org.apache.cordova.*
22+
23+
-keep class org.apache.cordova.** { *; }
24+
-keep public class * extends org.apache.cordova.CordovaPlugin

Android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@
2020
android:hardwareAccelerated="true"
2121
android:icon="@mipmap/ic_launcher"
2222
android:label="@string/app_name"
23+
android:requestLegacyExternalStorage="true"
2324
android:theme="@style/AppTheme"
2425
android:usesCleartextTraffic="true"
2526
tools:ignore="GoogleAppIndexingWarning"
26-
tools:targetApi="33">
27+
tools:targetApi="q">
2728
<activity
2829
android:name="com.dergoogler.mmrl.MainActivity"
2930
android:configChanges="orientation|screenSize"
@@ -32,21 +33,6 @@
3233
<action android:name="android.intent.action.MAIN" />
3334
<category android:name="android.intent.category.LAUNCHER" />
3435
</intent-filter>
35-
<intent-filter>
36-
<action android:name="android.intent.action.VIEW" />
37-
38-
<category android:name="android.intent.category.DEFAULT" />
39-
<category android:name="android.intent.category.BROWSABLE" />
40-
41-
<data android:scheme="mmrl" />
42-
43-
<data
44-
android:host="repo.dergoogler.com"
45-
android:scheme="https" />
46-
<data
47-
android:host="repo.dergoogler.com"
48-
android:scheme="http" />
49-
</intent-filter>
5036
</activity>
5137
</application>
5238
</manifest>

Android/app/src/main/assets/src/activitys/DescriptonActivity.d.ts

Lines changed: 0 additions & 2 deletions
This file was deleted.

Android/app/src/main/assets/src/activitys/MainActivity.d.ts

Lines changed: 0 additions & 2 deletions
This file was deleted.

Android/app/src/main/assets/src/activitys/MainApplication.d.ts

Lines changed: 0 additions & 19 deletions
This file was deleted.

Android/app/src/main/assets/src/activitys/NoRootActivity.d.ts

Lines changed: 0 additions & 2 deletions
This file was deleted.

Android/app/src/main/assets/src/activitys/RepoActivity.d.ts

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)