Erstellen Sie ein Projekt mit "Datei", "Neu" und "Neues Projekt". Weil es C ++ verwendet. Wählen Sie "Native C ++" und klicken Sie auf "Weiter". Diesmal lautet der Name "Test02" Speicherort spezifiziert das zu entwickelnde Verzeichnis Die Sprache wird diesmal in Java eingestellt (Kotlin ist in Ordnung) und dann auf "Weiter". Danach einfach "Fertig stellen" Wenn Sie diesen Bildschirm sehen, können Sie ein Projekt erstellen.
Fügen Sie das Modul dem von Setp1 erstellten Projekt hinzu. Wählen Sie "Datei" "Neu" "Neues Modil". Wählen Sie dieses Mal "Android Library" und klicken Sie auf "Next". Der Name der Anwendung / Bibliothek lautet diesmal "test02module". Wenn Sie auf "Fertig stellen" klicken Es sieht so aus und Sie können sehen, dass "test02module" zum Projekt hinzugefügt wurde.
Erstellen Sie zunächst ein Verzeichnis, um die C ++ - Quelle abzulegen. [test02] +---[test02modile] +---[src] +---[main]
CMakeList.txt
# For more information about using CMake with Android Studio, read the
# documentation: https://d.android.com/studio/projects/add-native-code.html
# Sets the minimum version of CMake required to build the native library.
cmake_minimum_required(VERSION 3.4.1)
# Creates and names a library, sets it as either STATIC
# or SHARED, and provides the relative paths to its source code.
# You can define multiple libraries, and CMake builds them for you.
# Gradle automatically packages shared libraries with your APK.
add_library( # Sets the name of the library.
native-module
# Sets the library as a shared library.
SHARED
# Provides a relative path to your source file(s).
subTest.cpp)
# Searches for a specified prebuilt library and stores the path as a
# variable. Because CMake includes system libraries in the search path by
# default, you only need to specify the name of the public NDK library
# you want to add. CMake verifies that the library exists before
# completing its build.
find_library( # Sets the name of the path variable.
log-lib
# Specifies the name of the NDK library that
# you want CMake to locate.
log)
set( LIB_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/../.. )
set( OUTPUT_DIR ${LIB_ROOT}/lib/${ANDROID_ABI} )
set_target_properties( native-module
PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${OUTPUT_DIR} )
# Specifies libraries CMake should link to your target library. You
# can link multiple libraries, such as libraries you define in this
# build script, prebuilt third-party libraries, or system libraries.
target_link_libraries( # Specifies the target library.
native-module
# Links the target library to the log library
# included in the NDK.
${log-lib})
subTest.cpp
#include "subTest.h"
subTest::subTest() {
}
void subTest::Hoge(int in_no) {
int a = in_no;
}
subTest.h
#pragma once
class subTest{
public:
subTest();
public:
void Hoge(int in_no);
};
Bearbeiten Sie nach dem Hinzufügen dieser drei Dateien build.gradle (Modul: test02module).
build.gradle
android {
:
:
externalNativeBuild {
cmake {
path "src/main/cpp/CMakeLists.txt"
version "3.10.2"
}
}
}
Hinzufügen. Sobald Sie mit diesem synchronisieren Sie können sehen, dass die Datei zum Modul hinzugefügt wurde.
Bearbeiten Sie build.gradle (Modul: App) auf der App-Seite.
android {
:
:
sourceSets {
main {
jniLibs.srcDir '../test02module/src/lib'
jni.srcDirs = []
}
}
}
Jetzt können Sie die C ++ - Bibliothek so durchsuchen. Bearbeiten Sie "CMakeKists.txt" auf der App-Seite.
CMakeKists.txt
# For more information about using CMake with Android Studio, read the
# documentation: https://d.android.com/studio/projects/add-native-code.html
# Sets the minimum version of CMake required to build the native library.
cmake_minimum_required(VERSION 3.4.1)
# Creates and names a library, sets it as either STATIC
# or SHARED, and provides the relative paths to its source code.
# You can define multiple libraries, and CMake builds them for you.
# Gradle automatically packages shared libraries with your APK.
add_library( # Sets the name of the library.
native-lib
# Sets the library as a shared library.
SHARED
# Provides a relative path to your source file(s).
native-lib.cpp)
include_directories(../../../../test02module/src/main/cpp)
add_library( native-module
SHARED
IMPORTED )
set_target_properties( native-module
PROPERTIES IMPORTED_LOCATION
../../../../../test02module/src/lib/${ANDROID_ABI}/libnative-module.so)
# Searches for a specified prebuilt library and stores the path as a
# variable. Because CMake includes system libraries in the search path by
# default, you only need to specify the name of the public NDK library
# you want to add. CMake verifies that the library exists before
# completing its build.
find_library( # Sets the name of the path variable.
log-lib
# Specifies the name of the NDK library that
# you want CMake to locate.
log)
# Specifies libraries CMake should link to your target library. You
# can link multiple libraries, such as libraries you define in this
# build script, prebuilt third-party libraries, or system libraries.
target_link_libraries( # Specifies the target library.
native-lib
native-module
# Links the target library to the log library
# included in the NDK.
${log-lib})
Jetzt können Sie sich darauf beziehen. C Quelle der App native-lib.cpp
native-lib.cpp
#include <jni.h>
#include <string>
#include "subTest.h"
extern "C" JNIEXPORT jstring JNICALL
Java_l_toox_test02_MainActivity_stringFromJNI(
JNIEnv *env,
jobject /* this */) {
subTest ss;
ss.Hoge(32);
std::string hello = "Hello from C++";
return env->NewStringUTF(hello.c_str());
}
Sie können darauf unter verweisen.
Wenn Sie es so kompilieren, wie es ist, kann ein Fehler auftreten. Weil möglicherweise keine solche Datei erstellt wurde Wenn Sie "Build" auswählen, nachdem Sie "test02 modile" ausgewählt haben, wird "Make Moduke'test02module" angezeigt. Wenn Sie es also ausführen und dann die App ausführen, gibt es kein Problem.
Recommended Posts