Моя android сборка приложения не поддерживается в Android 10 - PullRequest
0 голосов
/ 18 апреля 2020

Я сделал приложение android. Я использую

API Level 29

, и мой graddle -

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.3"

    defaultConfig {
        applicationId "com.e.whatstatussaver"
        minSdkVersion 16
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"


        aaptOptions {
            ignoreAssetsPattern "!arm"
            ignoreAssetsPattern "!x86"
        }

Но выпуск приложения не работает в последней версии android10 os.How чтобы исправить эту проблему. Каковы будут причины. Когда я открываю свое приложение за последние android 10 os.i я получаю вот так enter image description here

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

requestPermission();

И метод requestPermission

 private void requestPermission() {

        ActivityCompat.requestPermissions(this, new String[]{WRITE_EXTERNAL_STORAGE}, PERMISSION_REQUEST_CODE);
    }
    @Override
    public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {
        switch (requestCode) {
            case PERMISSION_REQUEST_CODE:
                if (grantResults.length > 0) {
                    boolean locationAccepted = grantResults[0] == PackageManager.PERMISSION_GRANTED;
                    if (locationAccepted) {
                        Intenttoactivity();
                    }
                    else {
                        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                            if (shouldShowRequestPermissionRationale(WRITE_EXTERNAL_STORAGE)) {
                                showMessageOKCancel("You need to allow access to the permissions to continue",
                                        new DialogInterface.OnClickListener() {
                                            @Override
                                            public void onClick(DialogInterface dialog, int which) {
                                                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                                                    requestPermissions(new String[]{WRITE_EXTERNAL_STORAGE},
                                                            PERMISSION_REQUEST_CODE);
                                                }
                                            }
                                        });
                                return;
                            }
                        }
                    }
                }
         break;
        }
    }

И код проверки каталога выглядит следующим образом

String ExternalStorageDirectoryPath = Environment
                        .getExternalStorageDirectory()
                        .getAbsolutePath();
                File f = new File(ExternalStorageDirectoryPath + "/WhatsApp/Media/.Statuses/");
                File d = new File(ExternalStorageDirectoryPath + "/WhatsStatus/");
                File dh = new File(ExternalStorageDirectoryPath + "/WhatsStatustemp/");

                if(!f.exists()) {
                    Toast.makeText(getApplicationContext(),"No Whatsup status folder found",Toast.LENGTH_LONG).show();
                }else {

                    if(!d.exists()){
                        d.mkdir();
                    }

                    if(!dh.exists()){
                        dh.mkdir();
                    }

                    Intent intent = new Intent(Welcome.this, MainActivity.class);
                    intent.putExtra("key","two");
                    startActivity(intent);
                }

            }
        }, 2000);
    }

И мой файл манифеста выглядит следующим образом

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

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/icon"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/icon"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".Downvideo"
            android:theme="@style/AppTheme.NoActionBar" >
        </activity>
        <activity android:name=".Downimage"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".Singlevideo"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".Singleimage"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity android:name=".Downloads" />
        <activity android:name=".Videos" />
        <activity android:name=".Images" />
        <activity android:name=".Privacypolicy" />
        <activity
            android:name=".Welcome"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".MainActivity"
            android:theme="@style/AppTheme.NoActionBar" />


        <uses-library
            android:name="org.apache.http.legacy"
            android:required="false" />

    </application>

</manifest>
...