File tree Expand file tree Collapse file tree 15 files changed +21
-21
lines changed
java/io/github/hexhacking/xdl/sample Expand file tree Collapse file tree 15 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ android {
61
61
}
62
62
63
63
dependencies {
64
- implementation 'io.hexhacking:xdl:1.2.1'
64
+ implementation 'io.github. hexhacking:xdl:1.2.1'
65
65
}
66
66
```
67
67
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ android {
61
61
}
62
62
63
63
dependencies {
64
- implementation 'io.hexhacking:xdl:1.2.1'
64
+ implementation 'io.github. hexhacking:xdl:1.2.1'
65
65
}
66
66
```
67
67
Original file line number Diff line number Diff line change 19
19
useASAN = false
20
20
dependencyOnLocalLibrary = true
21
21
22
- POM_GROUP_ID = " io.hexhacking"
22
+ POM_GROUP_ID = " io.github. hexhacking"
23
23
POM_ARTIFACT_ID = " xdl"
24
24
POM_VERSION_NAME = " 1.2.1"
25
25
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
- package =" io.hexhacking.xdl" >
3
+ package =" io.github. hexhacking.xdl" >
4
4
5
5
</manifest >
Original file line number Diff line number Diff line change 29
29
// https://github.com/hexhacking/xDL
30
30
//
31
31
32
- #ifndef IO_HEXHACKING_XDL
33
- #define IO_HEXHACKING_XDL
32
+ #ifndef IO_GITHUB_HEXHACKING_XDL
33
+ #define IO_GITHUB_HEXHACKING_XDL
34
34
35
35
#include <dlfcn.h>
36
36
#include <link.h>
Original file line number Diff line number Diff line change 21
21
22
22
// Created by caikelun on 2020-10-04.
23
23
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
26
26
27
27
#include <link.h>
28
28
#include <stddef.h>
Original file line number Diff line number Diff line change 21
21
22
22
// Created by caikelun on 2021-02-21.
23
23
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
26
26
27
27
#ifdef __cplusplus
28
28
extern "C" {
Original file line number Diff line number Diff line change 21
21
22
22
// Created by caikelun on 2020-11-08.
23
23
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
26
26
27
27
#include <stddef.h>
28
28
#include <stdint.h>
Original file line number Diff line number Diff line change 21
21
22
22
// Created by caikelun on 2020-10-04.
23
23
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
26
26
27
27
#include <errno.h>
28
28
#include <stdbool.h>
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ android {
7
7
buildToolsVersion rootProject. ext. buildToolsVersion
8
8
ndkVersion rootProject. ext. ndkVersion
9
9
defaultConfig {
10
- applicationId " io.hexhacking.xdl.sample"
10
+ applicationId " io.github. hexhacking.xdl.sample"
11
11
minSdkVersion rootProject. ext. minSdkVersion
12
12
targetSdkVersion rootProject. ext. targetSdkVersion
13
13
versionCode 1
@@ -66,7 +66,7 @@ dependencies {
66
66
if (rootProject. ext. dependencyOnLocalLibrary) {
67
67
implementation project(' :xdl' )
68
68
} else {
69
- implementation ' io.hexhacking:xdl:1.2.1'
69
+ implementation ' io.github. hexhacking:xdl:1.2.1'
70
70
}
71
71
}
72
72
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
- package =" io.hexhacking.xdl.sample" >
3
+ package =" io.github. hexhacking.xdl.sample" >
4
4
5
5
<application
6
6
android : name =" .MyCustomApplication"
Original file line number Diff line number Diff line change 13
13
#include "xdl.h"
14
14
15
15
#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"
17
17
18
18
// log
19
19
#pragma clang diagnostic push
Original file line number Diff line number Diff line change 1
- package io .hexhacking .xdl .sample ;
1
+ package io .github . hexhacking .xdl .sample ;
2
2
3
3
import androidx .appcompat .app .AppCompatActivity ;
4
4
Original file line number Diff line number Diff line change 1
- package io .hexhacking .xdl .sample ;
1
+ package io .github . hexhacking .xdl .sample ;
2
2
3
3
import android .app .Application ;
4
4
import android .content .Context ;
Original file line number Diff line number Diff line change 1
- package io .hexhacking .xdl .sample ;
1
+ package io .github . hexhacking .xdl .sample ;
2
2
3
3
public class NativeSample {
4
4
public static void test () {
You can’t perform that action at this time.
0 commit comments