Мое приложение Android не поддерживает версию Android 9 - PullRequest
0 голосов
/ 20 января 2019

Я сделал приложение для Android, которое использует webView.Все было в порядке, пока я не попробовал свое приложение на Android P. На Android "P" приложение прямо показывает страницу ошибки, что приложение не может подключиться к Интернету, даже если оно включено.

Файл манифеста Android:

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.xxx.xxxxx.xxxxx">

    <!-- android:roundIcon="@mipmap/ic_launcher_round" -->

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NOTIFICATION_POLICY"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.CAMERA" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/icon"
        android:label="@string/app_name"
        android:hardwareAccelerated="true"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name="com.xxxxx.xxxxx.xxxxxx.MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

Файл Gradle:

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.xxx.xxx.xxx"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 3
        versionName "3.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.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.android.support:design:28.0.0'
}

При получении ошибки в Android P непосредственно к этому разделу обращаются:

public void onReceivedError(WebView view, int errorCode,
                                        String description, String failingUrl) {
                // You can redirect to your own page instead getting the default error page

                super.onReceivedError(view, errorCode, description, failingUrl);
                String path = Uri.parse("file:///android_asset/error.html").toString();
                webView.loadUrl("about:blank");
                view.loadUrl(path);
            }

Ответы [ 2 ]

0 голосов
/ 20 января 2019

Я нашел ошибку, нетто: ERR_CLEARTEXT_NOT_PERMITTED Решение было WebView, показывающее ERR_CLEARTEXT_NOT_PERMITTED, хотя сайт HTTPS

0 голосов
/ 20 января 2019

Я не эксперт по Android, но вы сказали Gradle, что не хотите поддерживать Android старше версии 19 в файле gradle.

Измените его так, чтобы оно соответствовало минимальной версии, которую вы действительно хочу поддерживать и перестраивать ваше приложение.Вероятно, вы получите ошибки сборки, указывающие на API, которые вы не должны использовать, и другие проблемы с переносимостью.Исправьте их.

Ссылка:

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...