Skip to content

Commit 6edc5e5

Browse files
committed
xDL version upgrade to 2.0.0.
1 parent c8ca4ff commit 6edc5e5

22 files changed

+76
-57
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020-2021 HexHacking Team
3+
Copyright (c) 2020-2023 HexHacking Team
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+17-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
44
![](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)
5-
![](https://img.shields.io/badge/release-1.2.1-red.svg?style=flat)
5+
![](https://img.shields.io/badge/release-2.0.0-red.svg?style=flat)
66
![](https://img.shields.io/badge/Android-4.1%20--%2013-blue.svg?style=flat)
77
![](https://img.shields.io/badge/arch-armeabi--v7a%20%7C%20arm64--v8a%20%7C%20x86%20%7C%20x86__64-blue.svg?style=flat)
88

@@ -61,10 +61,25 @@ android {
6161
}
6262
6363
dependencies {
64-
implementation 'io.github.hexhacking:xdl:1.2.1'
64+
implementation 'io.github.hexhacking:xdl:2.0.0'
6565
}
6666
```
6767

68+
**NOTE**:
69+
70+
1. Starting from version `2.0.0` of xDL, group ID changed from `io.hexhacking` to `io.github.hexhacking`.
71+
72+
| version range | group ID | artifact ID | Repository URL |
73+
|:---------------|:-------------------------|:------------| :--------------|
74+
| [1.0.3, 1.2.1] | io.hexhacking | xdl | [repo](https://repo1.maven.org/maven2/io/hexhacking/xdl/) |
75+
| [2.0.0, ) | **io.github.hexhacking** | xdl | [repo](https://repo.maven.apache.org/maven2/io/github/hexhacking/xdl/) |
76+
77+
2. xDL uses the [prefab package schema v2](https://github.com/google/prefab/releases/tag/v2.0.0), which is configured by default since [Android Gradle Plugin 7.1.0](https://developer.android.com/studio/releases/gradle-plugin?buildsystem=cmake#7-1-0). If you are using Android Gradle Plugin earlier than 7.1.0, please add the following configuration to `gradle.properties`:
78+
79+
```
80+
android.prefabVersion=2.0.0
81+
```
82+
6883
### 2. Add dependency in CMakeLists.txt or Android.mk
6984

7085
> CMakeLists.txt

README.zh-CN.md

+17-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
44
![](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)
5-
![](https://img.shields.io/badge/release-1.2.1-red.svg?style=flat)
5+
![](https://img.shields.io/badge/release-2.0.0-red.svg?style=flat)
66
![](https://img.shields.io/badge/Android-4.1%20--%2013-blue.svg?style=flat)
77
![](https://img.shields.io/badge/arch-armeabi--v7a%20%7C%20arm64--v8a%20%7C%20x86%20%7C%20x86__64-blue.svg?style=flat)
88

@@ -61,10 +61,25 @@ android {
6161
}
6262
6363
dependencies {
64-
implementation 'io.github.hexhacking:xdl:1.2.1'
64+
implementation 'io.github.hexhacking:xdl:2.0.0'
6565
}
6666
```
6767

68+
**注意**
69+
70+
1. xDL 从版本 `2.0.0` 开始,group ID 从 `io.hexhacking` 改为 `io.github.hexhacking`
71+
72+
| 版本号范围 | group ID | artifact ID | 仓库 URL |
73+
|:---------------|:-------------------------|:------------|:-----------------------------------------------------------------------|
74+
| [1.0.3, 1.2.1] | io.hexhacking | xdl | [repo](https://repo1.maven.org/maven2/io/hexhacking/xdl/) |
75+
| [2.0.0, ) | **io.github.hexhacking** | xdl | [repo](https://repo.maven.apache.org/maven2/io/github/hexhacking/xdl/) |
76+
77+
2. xDL 使用 [prefab package schema v2](https://github.com/google/prefab/releases/tag/v2.0.0),它是从 [Android Gradle Plugin 7.1.0](https://developer.android.com/studio/releases/gradle-plugin?buildsystem=cmake#7-1-0) 开始作为默认配置的。如果你使用的是 Android Gradle Plugin 7.1.0 之前的版本,请在 `gradle.properties` 中加入以下配置:
78+
79+
```
80+
android.prefabVersion=2.0.0
81+
```
82+
6883
### 2. 在 CMakeLists.txt 或 Android.mk 中增加依赖
6984

7085
> CMakeLists.txt

build.gradle

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id 'com.android.application' version '7.2.2' apply false
3-
id 'com.android.library' version '7.2.2' apply false
2+
id 'com.android.application' version '7.4.2' apply false
3+
id 'com.android.library' version '7.4.2' apply false
44
}
55

66
task clean(type: Delete) {
@@ -11,17 +11,18 @@ ext {
1111
minSdkVersion = 16
1212
compileSdkVersion = 33
1313
targetSdkVersion = 33
14-
buildToolsVersion = "33.0.1"
15-
javaVersion = JavaVersion.VERSION_1_7
14+
buildToolsVersion = "33.0.2"
15+
javaVersion = JavaVersion.VERSION_1_8
1616
ndkVersion = "23.2.8568313"
1717
cmakeVersion = "3.22.1"
1818
abiFilters = "armeabi-v7a,arm64-v8a,x86,x86_64"
1919
useASAN = false
2020
dependencyOnLocalLibrary = true
21+
xdlVersion = "2.0.0"
2122

2223
POM_GROUP_ID = "io.github.hexhacking"
2324
POM_ARTIFACT_ID = "xdl"
24-
POM_VERSION_NAME = "1.2.1"
25+
POM_VERSION_NAME = "2.0.0"
2526

2627
POM_NAME = "xDL Android Lib"
2728
POM_DESCRIPTION = "xDL is an enhanced implementation of the Android DL series functions."

gradle.properties

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
1616
# https://developer.android.com/topic/libraries/support-library/androidx-rn
1717
android.useAndroidX=true
1818
# Automatically convert third-party libraries to use AndroidX
19-
android.enableJetifier=true
19+
android.enableJetifier=true
20+
android.disableAutomaticComponentCreation=true

gradle/publish.gradle

+4-22
Original file line numberDiff line numberDiff line change
@@ -22,32 +22,14 @@ if (secretPropsFile.exists()) {
2222
ext["ossrhPassword"] = System.getenv('OSSRH_PASSWORD')
2323
}
2424

25-
task sourcesJar(type: Jar) {
26-
archiveClassifier.set("sources")
27-
from android.sourceSets.main.java.srcDirs
28-
}
29-
30-
task javadoc(type: Javadoc) {
31-
source = android.sourceSets.main.java.sourceFiles
32-
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
33-
}
34-
35-
task javadocJar(type: Jar, dependsOn: javadoc) {
36-
archiveClassifier.set("javadoc")
37-
from javadoc.destinationDir
38-
}
39-
4025
project.afterEvaluate {
4126
publishing {
4227
publications {
4328
release(MavenPublication) {
4429
from components.release
4530

46-
artifact sourcesJar
47-
artifact javadocJar
48-
49-
artifactId POM_ARTIFACT_ID
5031
groupId POM_GROUP_ID
32+
artifactId POM_ARTIFACT_ID
5133
version POM_VERSION_NAME
5234

5335
pom {
@@ -84,9 +66,9 @@ project.afterEvaluate {
8466
maven {
8567
name = "sonatype"
8668

87-
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
88-
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
89-
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
69+
def releasesRepoUrl = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
70+
def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
71+
url = POM_VERSION_NAME.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
9072

9173
credentials {
9274
username ossrhUsername

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip

settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ dependencyResolutionManagement {
1010
repositories {
1111
google()
1212
mavenCentral()
13+
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }
1314
}
1415
}
1516
rootProject.name = "xDL"

xdl/build.gradle

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ plugins {
33
}
44

55
android {
6+
namespace 'io.github.hexhacking.xdl'
67
compileSdkVersion rootProject.ext.compileSdkVersion
78
buildToolsVersion rootProject.ext.buildToolsVersion
89
ndkVersion rootProject.ext.ndkVersion
@@ -40,12 +41,19 @@ android {
4041
}
4142
buildFeatures {
4243
prefabPublishing true
44+
buildConfig false
4345
}
4446
prefab {
4547
xdl {
4648
headers "src/main/cpp/include"
4749
}
4850
}
51+
publishing {
52+
singleVariant('release') {
53+
withSourcesJar()
54+
withJavadocJar()
55+
}
56+
}
4957
}
5058

5159
apply from: rootProject.file('gradle/publish.gradle')

xdl/src/main/AndroidManifest.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="io.github.hexhacking.xdl">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
</manifest>

xdl/src/main/cpp/include/xdl.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020-2021 HexHacking Team
1+
// Copyright (c) 2020-2023 HexHacking Team
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
2222
// Created by caikelun on 2020-10-04.
2323

2424
//
25-
// xDL version: 1.2.1
25+
// xDL version: 2.0.0
2626
//
2727
// xDL is an enhanced implementation of the Android DL series functions.
2828
// For more information, documentation, and the latest version please check:

xdl/src/main/cpp/xdl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020-2021 HexHacking Team
1+
// Copyright (c) 2020-2023 HexHacking Team
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

xdl/src/main/cpp/xdl_iterate.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020-2021 HexHacking Team
1+
// Copyright (c) 2020-2023 HexHacking Team
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

xdl/src/main/cpp/xdl_iterate.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020-2021 HexHacking Team
1+
// Copyright (c) 2020-2023 HexHacking Team
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

xdl/src/main/cpp/xdl_linker.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020-2021 HexHacking Team
1+
// Copyright (c) 2020-2023 HexHacking Team
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

xdl/src/main/cpp/xdl_linker.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020-2021 HexHacking Team
1+
// Copyright (c) 2020-2023 HexHacking Team
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

xdl/src/main/cpp/xdl_lzma.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020-2021 HexHacking Team
1+
// Copyright (c) 2020-2023 HexHacking Team
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

xdl/src/main/cpp/xdl_lzma.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020-2021 HexHacking Team
1+
// Copyright (c) 2020-2023 HexHacking Team
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

xdl/src/main/cpp/xdl_util.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020-2021 HexHacking Team
1+
// Copyright (c) 2020-2023 HexHacking Team
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

xdl/src/main/cpp/xdl_util.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020-2021 HexHacking Team
1+
// Copyright (c) 2020-2023 HexHacking Team
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
44
// of this software and associated documentation files (the "Software"), to deal

xdl_sample/build.gradle

+6-8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ plugins {
33
}
44

55
android {
6+
namespace 'io.github.hexhacking.xdl.sample'
67
compileSdkVersion rootProject.ext.compileSdkVersion
78
buildToolsVersion rootProject.ext.buildToolsVersion
89
ndkVersion rootProject.ext.ndkVersion
@@ -18,9 +19,6 @@ android {
1819
externalNativeBuild {
1920
cmake {
2021
abiFilters rootProject.ext.abiFilters.split(",")
21-
if (rootProject.ext.dependencyOnLocalLibrary) {
22-
arguments "-DDEPENDENCY_ON_LOCAL_LIBRARY=ON"
23-
}
2422
}
2523
}
2624
}
@@ -34,8 +32,8 @@ android {
3432
// }
3533
}
3634
compileOptions {
37-
sourceCompatibility JavaVersion.VERSION_1_8
38-
targetCompatibility JavaVersion.VERSION_1_8
35+
sourceCompatibility rootProject.ext.javaVersion
36+
targetCompatibility rootProject.ext.javaVersion
3937
}
4038
buildTypes {
4139
debug {
@@ -59,14 +57,14 @@ android {
5957
}
6058

6159
dependencies {
62-
implementation 'androidx.appcompat:appcompat:1.5.1'
63-
implementation 'com.google.android.material:material:1.7.0'
60+
implementation 'androidx.appcompat:appcompat:1.6.1'
61+
implementation 'com.google.android.material:material:1.8.0'
6462
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
6563

6664
if (rootProject.ext.dependencyOnLocalLibrary) {
6765
implementation project(':xdl')
6866
} else {
69-
implementation 'io.github.hexhacking:xdl:1.2.1'
67+
implementation 'io.github.hexhacking:xdl:' + rootProject.ext.xdlVersion
7068
}
7169
}
7270

xdl_sample/src/main/AndroidManifest.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="io.github.hexhacking.xdl.sample">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<application
65
android:name=".MyCustomApplication"

0 commit comments

Comments
 (0)