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
138
139
140
141
142
143
144
145
146
|
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
android {
ndkVersion "26.2.11394342"
namespace = "io.github.landerlyoung.jennysampleapp"
defaultConfig {
applicationId "com.young.jennysampleapp"
compileSdkVersion 34
minSdkVersion 21
targetSdkVersion 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags "-std=c++11 -fvisibility=hidden"
}
}
/* for Android Java project
javaCompileOptions {
annotationProcessorOptions {
arguments += [
"jenny.useJniHelper": "true"
"jenny.useTemplates": "true"
"jenny.outputDirectory": project.file('src/main/cpp/gen')
"jenny.templateDirectory": project.file('templates')
]
}
}
*/
}
externalNativeBuild {
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
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'
}
// make sure java compile is executed before ndk compile
// because we rely on Jenny generating cpp code
// for library project
// libraryVariants.all { variant ->
applicationVariants.all { variant ->
variant.externalNativeBuildProviders*.configure { ndkBuild ->
ndkBuild.dependsOn variant.javaCompileProvider.name
}
}
}
kapt {
arguments {
// pass arguments to jenny
// arg("jenny.threadSafe", "false")
//arg("jenny.errorLoggerFunction", "jennySampleErrorLog")
arg("jenny.outputDirectory", project.file('src/main/cpp/gen'))
arg("jenny.templateDirectory", project.file('templates'))
arg("jenny.headerOnlyProxy", "true")
arg("jenny.useJniHelper", "true")
arg("jenny.useTemplates", "true")
// arg("jenny.fusionProxyHeaderName", "JennyFusionProxy.h")
}
}
dependencies {
compileOnly project(':annotation')
kapt project(':compiler')
// for non-kotlin project use:
// annotationProcessor 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'
}
task copyGeneratedCpp {
def generatedDir = "generated/source/kapt/debug"
doLast {
copy {
// copy proxy
from new File(project.buildDir, "${generatedDir}/jenny/proxy")
into project.file('src/main/cpp/gen')
}
copy {
// copy glue header
from new File(project.buildDir, "${generatedDir}/jenny/glue/header")
into project.file('src/main/cpp')
}
// copy to sample-gen
copy {
from new File(project.buildDir, generatedDir)
include(
"jenny/glue/cpp/NativeDrawable.cpp",
"jenny/glue/header/NativeDrawable.h",
"jenny/proxy/java_okhttp_CallProxy.h",
"jenny/proxy/jenny_fusion_proxies.h"
)
into rootProject.file("sample-gen")
}
}
}
afterEvaluate {
// copy file to source after jenny generate
tasks.kaptDebugKotlin.finalizedBy copyGeneratedCpp
tasks.forEach {
if (it.name.startsWith("buildCMake")) {
it.dependsOn copyGeneratedCpp
}
}
}
|