Skip to content

Commit 2311c24

Browse files
committed
Update jlibjbigis
1 parent d63723f commit 2311c24

12 files changed

Lines changed: 96 additions & 93 deletions

File tree

.gitignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,33 @@ signing.properties
55
.gradle/
66
local.properties
77
override.properties
8+
9+
# VS Code
10+
.vscode/
11+
12+
# Build outputs
13+
app/build/
14+
app/free/
15+
lib/client/build/
16+
lib/helper/build/
17+
routerjars/build/
18+
routerjars/libs/
19+
20+
# Generated resources (created by copyI2PResources / copyI2PAssets tasks)
21+
app/src/main/res/drawable/i2plogo.png
22+
app/src/main/res/raw/
23+
app/src/main/assets/
24+
25+
# Release artifacts
26+
*.apk
27+
*.aab
28+
*.asc
29+
*.sig
30+
31+
# Patch files
32+
*.patch
33+
helpdiff
34+
35+
# Redundant per-module gradle.properties (covered by root)
36+
app/gradle.properties
837
build

app/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ repositories {
88

99
android {
1010
namespace 'net.i2p.android.router'
11+
ndkVersion '28.2.13676358'
1112
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION as String)
1213
buildFeatures {
1314
viewBinding true
@@ -17,6 +18,9 @@ android {
1718
versionName "$I2P_ANDROID_VERSION"
1819
minSdkVersion 21
1920
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION as String)
21+
ndk {
22+
abiFilters 'armeabi-v7a', 'arm64-v8a'
23+
}
2024

2125
// For Espresso
2226
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<application
2424
android:icon="@drawable/ic_launcher_itoopie"
2525
android:label="@string/app_name"
26+
android:extractNativeLibs="false"
2627
android:theme="@style/Theme.I2P">
2728
<service
2829
android:name=".service.RouterService"

etc/docker.local.ndk.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ndk.dir=/opt/android-sdk-linux/ndk/
1+
ndk.dir=/opt/android-sdk-linux/ndk/28.2.13676358

etc/github.gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ POM_DEVELOPER_ID=github-ci
1414
POM_DEVELOPER_NAME=github-ci
1515
POM_DEVELOPER_EMAIL=hankhill19580@gmail.com
1616

17-
ANDROID_BUILD_TARGET_SDK_VERSION=33
18-
ANDROID_BUILD_SDK_VERSION=33
17+
ANDROID_BUILD_TARGET_SDK_VERSION=35
18+
ANDROID_BUILD_SDK_VERSION=35
1919

2020
I2P_VERSION=2.4.0
2121
I2P_ANDROID_VERSION=2.4.0

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ANDROID_BUILD_SDK_VERSION=35
1515
ANDROID_BUILD_TARGET_SDK_VERSION=35
1616
GROUP=net.i2p.android
1717
I2P_ANDROID_VERSION=2.11.0
18-
I2P_ANDROID_VERSION_CODE=4745298
18+
I2P_ANDROID_VERSION_CODE=4745303
1919
I2P_VERSION=2.11.0-1
2020
POM_DEVELOPER_EMAIL=hankhill19580@gmail.com
2121
POM_DEVELOPER_ID=idk

lib/client/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ repositories {
77
}
88

99
android {
10+
ndkVersion '28.2.13676358'
1011
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION as String)
1112
defaultConfig {
1213
minSdkVersion 21
9.61 KB
Binary file not shown.
-14.9 KB
Binary file not shown.
-125 KB
Binary file not shown.

0 commit comments

Comments
 (0)