File tree 4 files changed +23
-3
lines changed
src/main/java/de/fraunhofer/fokus/OpenMobileNetworkToolkit/Iperf3
4 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -97,3 +97,6 @@ lint/tmp/
97
97
98
98
# Android Profiling
99
99
* .hprof
100
+
101
+ android /key.propierties
102
+ * .so
Original file line number Diff line number Diff line change @@ -11,11 +11,27 @@ plugins {
11
11
id(" org.spdx.sbom" ) version " 0.7.0"
12
12
}
13
13
14
+ def keystoreProperties = new Properties ()
15
+ def keystorePropertiesFile = rootProject. file(' android/key.properties' )
16
+ if (keystorePropertiesFile. exists()) {
17
+ keystoreProperties. load(new FileInputStream (keystorePropertiesFile))
18
+ } else {
19
+ project. logger. warn(" File not found: ${ keystorePropertiesFile} " )
20
+ project. logger. warn(" Using default values for signing config." )
21
+ keystoreProperties[' keyAlias' ] = " omnt_default"
22
+ keystoreProperties[' keyPassword' ] = " omnt2024"
23
+ keystoreProperties[' storeFile' ] = file(" omnt_default.jks" )
24
+ keystoreProperties[' storePassword' ] = " omnt2024"
25
+ }
26
+
27
+
14
28
android {
15
29
signingConfigs {
16
30
debug {
17
- storeFile file(' OpenMobileNetworkToolkit-key.jks' )
18
- keyAlias ' key0'
31
+ keyAlias keystoreProperties[' keyAlias' ]
32
+ keyPassword keystoreProperties[' keyPassword' ]
33
+ storeFile keystoreProperties[' storeFile' ] ? file(keystoreProperties[' storeFile' ]) : null
34
+ storePassword keystoreProperties[' storePassword' ]
19
35
}
20
36
}
21
37
compileSdk 34
Original file line number Diff line number Diff line change @@ -23,7 +23,8 @@ public class Iperf3LibLoader {
23
23
"iperf3.11" ,
24
24
"iperf3.12" ,
25
25
"iperf3.15" ,
26
- "iperf3.16"
26
+ "iperf3.16" ,
27
+ "iperf3.17.1"
27
28
);
28
29
29
30
protected static synchronized void load () {
You can’t perform that action at this time.
0 commit comments