Skip to content

Commit 5d73f1d

Browse files
committed
ref: publish to android project up and running
1 parent 75d11f6 commit 5d73f1d

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

rust-library/cryptor_jni/build.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ static ANDROID_TOOLCHAINS_PATH: &str = "/toolchains/llvm/prebuilt/linux-x86_64/b
5353
// armv7a-linux-androideabi ---> armeabi-v7a
5454
// aarch64-linux-android ---> arm64-v8a
5555
// i686-linux-android ---> x86
56-
// x86_64-linux-android ---> x86-64
56+
// x86_64-linux-android ---> x86_64
5757
// -------------------------------------------------------------------------------------
5858
//
5959
// For more information, check the Official Android documentation:
@@ -67,7 +67,7 @@ pub static ANDROID_TARGETS_CONFIG: phf::Map<&'static str, (&'static str, &'stati
6767
"armv7-linux-androideabi" => ("arm-linux-androideabi-ar", "armv7a-linux-androideabi21-clang", "armeabi-v7a"),
6868
"aarch64-linux-android" => ("aarch64-linux-android-ar", "aarch64-linux-android21-clang", "arm64-v8a"),
6969
"i686-linux-android" => ("i686-linux-android-ar", "i686-linux-android21-clang", "x86"),
70-
"x86_64-linux-android" => ("x86_64-linux-android-ar", "x86_64-linux-android21-clang", "x86-64"),
70+
"x86_64-linux-android" => ("x86_64-linux-android-ar", "x86_64-linux-android21-clang", "x86_64"),
7171
};
7272
// -----------------------------------------------------------------------------------------------
7373

rust-library/cryptor_jni/src/bin/publish.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ fn publish_jni_lib_to_android_project() -> Result<String, Box<dyn Error>> {
127127
}
128128
}
129129

130-
Ok("".to_owned())
130+
Ok("JNI Libs Succesfully Published to the Android Project!!!".to_owned())
131131
}
132132

133133
fn main() {

0 commit comments

Comments
 (0)