blob: 1cca98cfb102008e09f328876754b523fa70aa8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-kapt'
id 'org.qtproject.qt.qtjennyPlugin'
}
/**
* # Using `GenerateProxies` in Gradle
*
* The `GenerateProxies` task allows generating JNI proxy classes from JAR files.
* There are two ways to configure it:
*
* ## 1. Using `jsonConfigFile`
* You can specify a JSON configuration file that contains proxy generation settings.
* This file should follow a structured format defining JAR paths, namespaces, and class names.
*
* **Example:**
* GenerateProxies {
* // Check sample-android-qt/qtjenny.proxyConfig.json to see the format
* jsonConfigFile = "path/to/qtjenny.proxyConfig.json"
* }
*
* - The JSON file must contain fields like:
* - `outputDirectory` → The directory where proxies will be generated.
* - `headerOnly` → Whether to generate only headers.
* - `jarFiles` → A list of JAR file configurations with `namespace`, `path`, and `fullClassNames`.
*
* ## 2. Using `JarFile` Directly
* Instead of a JSON file, you can manually specify JAR files and their associated class names.
*
* **Example:**
* GenerateProxies {
* JarFile {
* it.namespace = "standard::space" // Optional namespace
* it.path = "path/to/jar/myjar.jar" // Path to the JAR file
* it.fullClassNames = "io.package.MyClass, io.package.OuterClass.InnerClass" // Classes to generate proxies for
* }
*
* JarFile {
* it.path = "path/to/jar/utilJar.jar"
* it.fullClassNames = "com.pack.ServiceClass"
* }
* ....
*
* headerOnly = true // Default is false
* outputDirectory = "path/to/outputFolder"
* }
*
* ## Notes:
* - Use fully qualified class names in `fullClassNames` to avoid conflicts.
* - The generated files will be placed in the specified `outputDirectory`.
*/
GenerateProxies {
// Fill in with the adequate way JSON or JarFile
}
android {
ndkVersion "26.2.11394342"
namespace = "io.github.landerlyoung.jennysampleapp"
defaultConfig {
applicationId "com.young.jennysampleapp"
compileSdk 34
minSdkVersion 21
targetSdkVersion 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags "-std=c++11 -fvisibility=hidden"
}
}
}
lintOptions {
abortOnError false
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
kotlinOptions {
jvmTarget = '1.8'
}
applicationVariants.configureEach { variant ->
variant.externalNativeBuildProviders*.configure { ndkBuild ->
ndkBuild.dependsOn variant.javaCompileProvider.name
}
}
}
import org.jetbrains.kotlin.gradle.internal.KaptTask
tasks.withType(KaptTask).configureEach { task ->
def suffix = task.name.contains("kaptDebug") ? "debug" : "release"
annotationProcessorOptionProviders.add([new CommandLineArgumentProvider() {
@Override
Iterable<String> asArguments() {
return ["jenny.templateBuildDirectory=" + project.file('templates') + "/" + suffix]
}
}])
}
kapt {
arguments {
arg("jenny.outputDirectory", project.file('src/main/cpp/gen'))
}
}
dependencies {
compileOnly project(':annotation')
kapt project(':compiler')
}
dependencies {
implementation "androidx.core:core-ktx:1.3.2"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
// noinspection GradleDependency
implementation 'com.squareup.okhttp3:okhttp:3.14.7'
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.annotation:annotation:1.1.0'
}
|