最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

android 調用JNI SO動態(tài)庫的方法

 更新時間:2021年11月03日 15:49:08   作者:generallizhong  
android 調用JNI 分為靜態(tài)調用與動態(tài)調用,接下來通過本文給大家介紹android 調用JNI SO動態(tài)庫的方法,感興趣的朋友一起看看吧

總結一下:

android 調用JNI 分為靜態(tài)調用與動態(tài)調用(不論動態(tài)還是靜態(tài)前提都是NDK環(huán)境已經配置好的前提下)

一、靜態(tài)主要就是將c(.c)或者c++(cpp)的源文件直接加到項目中進行調用,

然后在CMakeLists.txt中進行配置。

 二、動態(tài)調用

1、動態(tài)調用使用已經編譯好的動態(tài)庫.so文件

 2、android調用ndk類

生成后的so文件

public class SerialPort {

p
*/
public static native int GetSOVer(String ar);

static {
System.loadLibrary("serialport");//初始化so庫(注意這里添加是需要去掉lib與.so)

}
}

3、.c文件添加

/*
 * Copyright 2009-2011 Cedric Priscal
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#include <jni.h>
#include <termios.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include "M1900_drv.h"
#include "SerialPort.h"
#include "include/tinyalsa/audio_i2s.h"
#include "include/tinyalsa/asoundlib.h"
#include "android/log.h"
#include "newland_linux_so.h"
 
static const char *TAG = "serial_port";
#define LOGI(fmt, args...) __android_log_print(ANDROID_LOG_INFO,  TAG, fmt, ##args)
#define LOGD(fmt, args...) __android_log_print(ANDROID_LOG_DEBUG, TAG, fmt, ##args)
#define LOGE(fmt, args...) __android_log_print(ANDROID_LOG_ERROR, TAG, fmt, ##args)
 
//測試  Java_(固定)_com_littt_util_SerialPort(android包名原來的.更改為_,string ar 傳入的字符串參數(shù),JNIEnv *env, jclass固定寫法)
JNIEXPORT jint JNICALL 
Java_com_littt_util_SerialPort_GetSOVer(JNIEnv *env, jclass clazz, jstring ar) {
	// TODO: implement GetSOVer()
	return 9;//返回一個9的值
}

4、.h頭文件中聲明

/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class android_serialport_api_SerialPort */
#ifndef _Included_android_serialport_api_SerialPort
#define _Included_android_serialport_api_SerialPort
#ifdef __cplusplus
extern "C" {
#endif
JNIEXPORT jint JNICALL
Java_com_littt_util_SerialPort_GetSOVer(JNIEnv *env, jclass clazz,jstring v);
#ifdef __cplusplus
}
#endif
#endif

 5、頭文件與c文件寫好了,就需要在CMake 中添加.c與.h都需要添加

# 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.
        serialport
 
        # Sets the library as a shared library.
        SHARED
 
        # Provides a relative path to your source file(s).
        M1900_drv.c
        M1900_drv.h
        audio_i2s.c
       linux_so.cpp
        mixer.c
        
        include/tinyalsa/asoundlib.h
        include/tinyalsa/audio_i2s.h
        )
 
# 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.
        serialport
 
        # Links the target library to the log library
        # included in the NDK.
        ${log-lib})
 
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -s")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -s")

6、在build.gradle同樣需要配置

plugins {
    id 'com.android.application'
}
 
android {
    compileSdkVersion 28
    buildToolsVersion "28.0.3"
 
    defaultConfig {
        applicationId "com.littt.interphone"
        minSdkVersion 17
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
 
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        // cmake
        externalNativeBuild {
            cmake {
                cppFlags ""
                abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
            }
        }
 
    }
    externalNativeBuild {
        cmake {
            path "src/main/cpp/CMakeLists.txt"
            version "3.10.2"
 
        }
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    sourceSets {
        main {
            jniLibs.srcDirs = ['libs']
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
 
    ndkVersion '22.1.7171670'
}
dependencies {
//    implementation 'androidx.appcompat:appcompat:1.2.0'
//    implementation 'com.google.android.material:material:1.2.1'
  
}

7、如果靜態(tài)調用可以成功,那么就可以生成動態(tài)so庫文件

 

點擊圖中錘子會進行編譯。完成后可以打開如下路徑查看 

紅框中生成后 so文件

7.1、生成的.so文件(工程文件夾模式)目錄為app/build/intermediates/ndk/lib,將其復制到另一個工程的app/lib目錄下。

7.2、要使用上述的.so文件 ,必須將工程的包名改為生成.so文件時的包名,要不然 編譯能通過,但是app不能正常運行。logcat會提示找不到所調用函數(shù)的實現(xiàn)。

7.3、將so文件復制到需要的路徑下。
7.4、在gradle.properties中最后加一行:android.useDeprecatedNdk=true。

到此這篇關于android 調用JNI SO動態(tài)庫的文章就介紹到這了,更多相關android 調用JNI SO動態(tài)庫內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!

相關文章

  • 深入理解Android中的建造者模式

    深入理解Android中的建造者模式

    建造者模式將一個復雜的構建與其表示相分離,使得同樣的構建過程可以創(chuàng)建不同的表示。所以這篇文章主要介紹了Android中的建造者模式,有需要的朋友們可以參考借鑒。
    2016-09-09
  • Android流式布局FlowLayout詳解

    Android流式布局FlowLayout詳解

    這篇文章主要為大家詳細介紹了Android流式布局FlowLayout的相關資料,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-12-12
  • Android開發(fā)實現(xiàn)仿QQ消息SwipeMenuListView滑動刪除置頂功能【附源碼下載】

    Android開發(fā)實現(xiàn)仿QQ消息SwipeMenuListView滑動刪除置頂功能【附源碼下載】

    這篇文章主要介紹了Android開發(fā)實現(xiàn)仿QQ消息SwipeMenuListView滑動刪除置頂功能,結合實例形式分析了Android swipemenulistview相關組件的使用技巧,并附帶demo源碼供讀者下載參考,需要的朋友可以參考下
    2017-12-12
  • Android UI自定義ListView實現(xiàn)下拉刷新和加載更多效果

    Android UI自定義ListView實現(xiàn)下拉刷新和加載更多效果

    這篇文章主要介紹了Android UI自定義ListView實現(xiàn)下拉刷新和加載更多效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2016-11-11
  • Android開發(fā)解決popupWindow重疊報錯問題

    Android開發(fā)解決popupWindow重疊報錯問題

    今天小編就為大家分享一篇關于Android開發(fā)解決popupWindow重疊報錯問題的文章,小編覺得內容挺不錯的,現(xiàn)在分享給大家,具有很好的參考價值,需要的朋友一起跟隨小編來看看吧
    2018-10-10
  • Android基于高德地圖poi的仿微信獲取位置功能實例代碼

    Android基于高德地圖poi的仿微信獲取位置功能實例代碼

    這篇文章主要介紹了Android基于高德地圖poi的仿微信獲取位置功能,當用戶打開頁面自動定位,同時搜索周邊所有poi,點擊搜索按鈕輸入關鍵字,獲取關鍵字搜索結果,本文圖文并茂給大家介紹的非常詳細,需要的朋友參考下吧
    2017-12-12
  • Android Eclipse 注釋模板的使用(圖文說明)

    Android Eclipse 注釋模板的使用(圖文說明)

    為提高代碼的可讀性以及后期的可維護性,為我們的代碼加上規(guī)范化的注釋是很有必要,不僅有利于提高自己的專業(yè)素養(yǎng),也能方便他人
    2013-12-12
  • 淺談Android Studio3.6 更新功能

    淺談Android Studio3.6 更新功能

    這篇文章主要介紹了Android Studio3.6 更新功能的相關知識,本文通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-03-03
  • Android BroadcastReceiver傳輸機制詳解

    Android BroadcastReceiver傳輸機制詳解

    Android開發(fā)的四大組件分別是:活動(activity),用于表現(xiàn)功能;服務(service),后臺運行服務,不提供界面呈現(xiàn);廣播接受者(Broadcast Receive),勇于接收廣播;內容提供者(Content Provider),支持多個應用中存儲和讀取數(shù)據,相當于數(shù)據庫,本篇著重介紹廣播組件
    2023-01-01
  • 在不同Activity之間傳遞數(shù)據的四種常用方法

    在不同Activity之間傳遞數(shù)據的四種常用方法

    這篇文章主要介紹了在不同Activity之間傳遞數(shù)據的四種常用方法 的相關資料,需要的朋友可以參考下
    2016-03-03

最新評論

平泉县| 新邵县| 新泰市| 织金县| 白水县| 晴隆县| 龙门县| 利津县| 鹤岗市| 常州市| 新晃| 吴堡县| 罗甸县| 淮阳县| 湖北省| 宁城县| 玉溪市| 吉首市| 崇礼县| 潜江市| 玉屏| 株洲市| 静乐县| 东兰县| 青阳县| 西乡县| 大姚县| 榆社县| 临澧县| 日喀则市| 天全县| 台中县| 吉首市| 昌宁县| 山西省| 宁都县| 尖扎县| 永吉县| 鹤壁市| 澄迈县| 织金县|