VirtualAPK的簡單使用

来源:https://www.cnblogs.com/milovetingting/archive/2019/02/26/10436721.html
-Advertisement-
Play Games

VirtualApk引入步驟: 一、宿主應用引入VirtualApk 1、在項目的build.gradle文件中加入依賴: dependencies { classpath 'com.didi.virtualapk:gradle:0.9.8.6' } 完整的gradle文件如下: // Top le ...


VirtualApk引入步驟:

一、宿主應用引入VirtualApk

1、在項目的build.gradle文件中加入依賴:

dependencies {
    classpath 'com.didi.virtualapk:gradle:0.9.8.6'
}

完整的gradle文件如下:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.4'
        classpath 'com.didi.virtualapk:gradle:0.9.8.6'
        

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

2、在app的build.gradle文件中加入依賴:

apply plugin: 'com.didi.virtualapk.host'

dependencies {
    implementation 'com.didi.virtualapk:core:0.9.8'
}

完整的gradle文件如下:

    apply plugin: 'com.android.application'
    apply plugin: 'com.didi.virtualapk.host'
    
    android {
        compileSdkVersion 28
        defaultConfig {
            applicationId "com.wangyz.virtualapk.host"
            minSdkVersion 21
            targetSdkVersion 28
            versionCode 1
            versionName "1.0"
            testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }

    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'com.android.support:appcompat-v7:28.+'
        implementation 'com.android.support.constraint:constraint-layout:1.0.2'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'com.android.support.test:runner:1.0.1'
        androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    
        implementation 'com.didi.virtualapk:core:0.9.8'
    }

3、新建項目的Application,繼承自Application,併在attachBaseContext方法中初始化

public class App extends Application{

    @Override
    protected void attachBaseContext(Context base) {
        super.attachBaseContext(base);
        PluginManager.getInstance(base).init();
    }
}

4、在AndroidManifest.xml中引入自定義的Application

<application
    android:name=".App"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

5、申明許可權

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

二、Plugin中引入VirtualApk

1、在項目的build.gradle文件中加入依賴:

dependencies {
    classpath 'com.didi.virtualapk:gradle:0.9.8.6'
}

完整的gradle文件如下:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.4'
        classpath 'com.didi.virtualapk:gradle:0.9.8.6'
        

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

2、在app的build.gradle文件中加入依賴:

apply plugin: 'com.didi.virtualapk.plugin'

virtualApk{
    packageId = 0x6f
    targetHost = '../../VirtualAPKHost/app'//宿主應用的app模塊路徑
    applyHostMapping = true
}

3、在app的build.gradle文件中加入簽名配置

signingConfigs{
        release{
            storeFile file('../../android.keystore')
            storePassword "android"
            keyAlias "android"
            keyPassword "android"
        }
    }

    buildTypes {
    release {
        minifyEnabled false
        signingConfig signingConfigs.release
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

完整的gradle文件如下:

apply plugin: 'com.android.application'
apply plugin: 'com.didi.virtualapk.plugin'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.wangyz.virtualapk.plugin"
        minSdkVersion 21
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    signingConfigs{
        release{
            storeFile file('../../android.keystore')
            storePassword "android"
            keyAlias "android"
            keyPassword "android"
        }
    }
    buildTypes {
        release {
            minifyEnabled false
            signingConfig signingConfigs.release
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.+'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

virtualApk{
    packageId = 0x6f
    targetHost = '../../VirtualAPKHost/app'
    applyHostMapping = true
}

註意:Plugin應用的資源文件不能和宿主的資源文件重名,否則在生成插件APK時會報錯:

error.png

建議各模塊資源命名以模塊名開頭。

4、生成插件APK

打開gradle視窗,雙擊assemblePlugin,生成APK

build.png

文件生成目錄:app/build/outputs/plugin/release/

三、在宿主應用中載入插件APK

1、將生成的插件APK推送(通過網路或者adb等)到手機指定路徑,如/sdcard/Plugin.apk。

2、在宿主應用中載入APK

private static final String PLUGIN_PACKAGE_NAME = "com.wangyz.virtualapk.plugin";
private static final String PLUGIN_NAME = "com.wangyz.virtualapk.plugin.MainActivity";

private void loadPlugin() {
    try {
        String pluginPath = Environment.getExternalStorageDirectory().getAbsolutePath().concat("/Plugin.apk");
        File plugin = new File(pluginPath);
        PluginManager.getInstance(this).loadPlugin(plugin);
    } catch (Exception e) {
        e.printStackTrace();
    }
}

3、調用APK中的Activity

public void loadPlugin(View view) {
    if (PluginManager.getInstance(this).getLoadedPlugin(PLUGIN_PACKAGE_NAME) == null) {
        Toast.makeText(getApplicationContext(), "未載入插件", Toast.LENGTH_SHORT).show();
        return;
    }
    Intent intent = new Intent();
    intent.setComponent(new ComponentName(PLUGIN_PACKAGE_NAME, PLUGIN_NAME));
    startActivity(intent);
}

源碼地址:https://github.com/milovetingting/Samples/tree/master/VirtualAPK


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • [20190226]測試使用bbed恢復索引.txt--//上午做tab$刪除恢複測試時發現,tab$的索引i_tab1很小.可以嘗試使用bbed解決這個問題.--//首先在普通表上做一個測試看看.1.環境:SCOTT@book> @ ver1PORT_STRING VERSION BANNER x ...
  • 前言goldengate 11g 在oracle 11g rac 上的配置 (源是rac+asm , 目標是單資料庫實例) 源端: 1. 配置tnsnames [oracle@rac1 admin]$ more tnsnames.ora # tnsnames.ora Network Configur ...
  • 本文由雲+社區發表 作者:磊哥 上期文章我們聊到了redis。這期我們來說說另一個網紅nosql資料庫:MongoDB。有這麼一個介紹MongoDB的說法是:MongoDB是非關係資料庫當中功能最豐富,最像關係資料庫的。這麼說是因為作為一個面向文檔存儲型、數據結構非常鬆散自由的的資料庫,卻擁有著豐富 ...
  • (1)跨文檔事務支持 (ACID) 首個支持跨文檔事務的NoSQL雲資料庫,將文檔模型的速度,靈活性和功能與ACID保證相結合。現在,使用MongoDB解決各種用例變得更加容易。 (2)40%遷移速度提升 併發的讀取和寫入,使得新增分片shard遷移性能提升了約 40%, 新增節點能更快的承載業務壓 ...
  • 1.Build Setting>>>C Language Dialect,然後選擇GNU99[-std=gnu99] (選擇看項目實際要求)。 2.Build Setting>>>Architectures>>>Vaild Architectures,然後把arm64和armv7s去掉。 3.Bui ...
  • 首先參照官方文檔進行搭建Mac下的環境 ,然後就會遇到以下問題: 1.在下載了Flutter 之後,執行Flutter doctor之後,報錯: Could not resolve URL "https://pub.flutter-io.cn". Could not resolve URL "htt ...
  • ContentProvider ContentProvider 在android中的作用是對外共用數據,也就是說你可以通過ContentProvider把應用中的數據共用給其他應用訪問,其他應用可以通過ContentProvider 對你應用中的數據進行添刪改查。ContentProvider的就是 ...
  • 1、Activity的生命周期 1.1、典型情況下的生命周期 在有用戶參與的情況下,Activity所經過的生命周期的改變。 Activity會經歷如下生命周期: onCreate onRestart onStart onResume onPause onStop onDestroy 1.2、異常情 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...