Skip to content

Commit c8ca4ff

Browse files
committed
Change POM group ID from io.hexhacking to io.github.hexhacking.
1 parent b668643 commit c8ca4ff

File tree

15 files changed

+21
-21
lines changed

15 files changed

+21
-21
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ android {
6161
}
6262
6363
dependencies {
64-
implementation 'io.hexhacking:xdl:1.2.1'
64+
implementation 'io.github.hexhacking:xdl:1.2.1'
6565
}
6666
```
6767

README.zh-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ android {
6161
}
6262
6363
dependencies {
64-
implementation 'io.hexhacking:xdl:1.2.1'
64+
implementation 'io.github.hexhacking:xdl:1.2.1'
6565
}
6666
```
6767

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ext {
1919
useASAN = false
2020
dependencyOnLocalLibrary = true
2121

22-
POM_GROUP_ID = "io.hexhacking"
22+
POM_GROUP_ID = "io.github.hexhacking"
2323
POM_ARTIFACT_ID = "xdl"
2424
POM_VERSION_NAME = "1.2.1"
2525

xdl/src/main/AndroidManifest.xml

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

55
</manifest>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
// https://github.com/hexhacking/xDL
3030
//
3131

32-
#ifndef IO_HEXHACKING_XDL
33-
#define IO_HEXHACKING_XDL
32+
#ifndef IO_GITHUB_HEXHACKING_XDL
33+
#define IO_GITHUB_HEXHACKING_XDL
3434

3535
#include <dlfcn.h>
3636
#include <link.h>

xdl/src/main/cpp/xdl_iterate.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
// Created by caikelun on 2020-10-04.
2323

24-
#ifndef IO_HEXHACKING_XDL_ITERATE
25-
#define IO_HEXHACKING_XDL_ITERATE
24+
#ifndef IO_GITHUB_HEXHACKING_XDL_ITERATE
25+
#define IO_GITHUB_HEXHACKING_XDL_ITERATE
2626

2727
#include <link.h>
2828
#include <stddef.h>

xdl/src/main/cpp/xdl_linker.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
// Created by caikelun on 2021-02-21.
2323

24-
#ifndef IO_HEXHACKING_XDL_LINKER
25-
#define IO_HEXHACKING_XDL_LINKER
24+
#ifndef IO_GITHUB_HEXHACKING_XDL_LINKER
25+
#define IO_GITHUB_HEXHACKING_XDL_LINKER
2626

2727
#ifdef __cplusplus
2828
extern "C" {

xdl/src/main/cpp/xdl_lzma.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
// Created by caikelun on 2020-11-08.
2323

24-
#ifndef IO_HEXHACKING_XDL_LZMA
25-
#define IO_HEXHACKING_XDL_LZMA
24+
#ifndef IO_GITHUB_HEXHACKING_XDL_LZMA
25+
#define IO_GITHUB_HEXHACKING_XDL_LZMA
2626

2727
#include <stddef.h>
2828
#include <stdint.h>

xdl/src/main/cpp/xdl_util.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
// Created by caikelun on 2020-10-04.
2323

24-
#ifndef IO_HEXHACKING_XDL_UTIL
25-
#define IO_HEXHACKING_XDL_UTIL
24+
#ifndef IO_GITHUB_HEXHACKING_XDL_UTIL
25+
#define IO_GITHUB_HEXHACKING_XDL_UTIL
2626

2727
#include <errno.h>
2828
#include <stdbool.h>

xdl_sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android {
77
buildToolsVersion rootProject.ext.buildToolsVersion
88
ndkVersion rootProject.ext.ndkVersion
99
defaultConfig {
10-
applicationId "io.hexhacking.xdl.sample"
10+
applicationId "io.github.hexhacking.xdl.sample"
1111
minSdkVersion rootProject.ext.minSdkVersion
1212
targetSdkVersion rootProject.ext.targetSdkVersion
1313
versionCode 1
@@ -66,7 +66,7 @@ dependencies {
6666
if (rootProject.ext.dependencyOnLocalLibrary) {
6767
implementation project(':xdl')
6868
} else {
69-
implementation 'io.hexhacking:xdl:1.2.1'
69+
implementation 'io.github.hexhacking:xdl:1.2.1'
7070
}
7171
}
7272

xdl_sample/src/main/AndroidManifest.xml

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

55
<application
66
android:name=".MyCustomApplication"

xdl_sample/src/main/cpp/sample.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include "xdl.h"
1414

1515
#define SAMPLE_JNI_VERSION JNI_VERSION_1_6
16-
#define SAMPLE_JNI_CLASS_NAME "io/hexhacking/xdl/sample/NativeSample"
16+
#define SAMPLE_JNI_CLASS_NAME "io/github/hexhacking/xdl/sample/NativeSample"
1717

1818
// log
1919
#pragma clang diagnostic push

xdl_sample/src/main/java/io/hexhacking/xdl/sample/MainActivity.java renamed to xdl_sample/src/main/java/io/github/hexhacking/xdl/sample/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.hexhacking.xdl.sample;
1+
package io.github.hexhacking.xdl.sample;
22

33
import androidx.appcompat.app.AppCompatActivity;
44

xdl_sample/src/main/java/io/hexhacking/xdl/sample/MyCustomApplication.java renamed to xdl_sample/src/main/java/io/github/hexhacking/xdl/sample/MyCustomApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.hexhacking.xdl.sample;
1+
package io.github.hexhacking.xdl.sample;
22

33
import android.app.Application;
44
import android.content.Context;

xdl_sample/src/main/java/io/hexhacking/xdl/sample/NativeSample.java renamed to xdl_sample/src/main/java/io/github/hexhacking/xdl/sample/NativeSample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.hexhacking.xdl.sample;
1+
package io.github.hexhacking.xdl.sample;
22

33
public class NativeSample {
44
public static void test() {

0 commit comments

Comments
 (0)