Android Studio 安装后无法打开apk

hfwmuf9z  于 2023-03-03  发布在  Android
关注(0)|答案(1)|浏览(429)

我为我的网站开发了一个带有自定义chrome标签的android studio应用程序。

public class AnnaStudio {
    String url = "https://www.example.com/";
    CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
    CustomTabsIntent customTabsIntent = builder.build();
    customTabsIntent.launchUrl(this, Uri.parse(url));

}
plugins {
    id 'com.android.application'
}

android {
    namespace 'com.example'
    compileSdk 33

    defaultConfig {
        applicationId "com.example"
        minSdk 24
        targetSdk 33
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {

    implementation "androidx.browser:browser:1.4.0"
    implementation 'androidx.appcompat:appcompat:1.6.1'
    implementation 'com.google.android.material:material:1.8.0'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.5'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}

我尝试构建调试版本和签名版本。
我遵循了can't open (to install) apk built from android studio,但它似乎解决了其他问题,解决方案对我不好。

62lalag4

62lalag41#

如果我得到它的权利,你的.apk文件传输到您的手机,并试图打开它。首先,你需要一个Android手机。在那里你导航到播放商店,下载“APK安装程序”应用程序。打开这个应用程序,并安装您的.apk文件,如指示有,希望我能帮上忙。

相关问题