0

アプリケーションクラスに許可を求めたい。デバイス ID へのアクセス許可を求めるにはどうすればよいですか? スプラッシュ スクリーン アクティビティを開始する前にクラッシュするため、アクティビティに許可を求めることができません。次のコードは、スプラッシュ スクリーン アクティビティの一部です。

 @Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    checkpermi();

パーミッションをチェックするためのコード

public  void checkpermi() {    
if(ContextCompat.checkSelfPermission(this,
Manifest.permission.ACCESS_FINE_LOCATION)
            + ContextCompat.checkSelfPermission(
            this,Manifest.permission.READ_PHONE_STATE)
            + ContextCompat.checkSelfPermission(
            this,Manifest.permission.WRITE_EXTERNAL_STORAGE)
            != PackageManager.PERMISSION_GRANTED){

        // Do something, when permissions not granted
        if(ActivityCompat.shouldShowRequestPermissionRationale(
                this,Manifest.permission.ACCESS_FINE_LOCATION)
                || ActivityCompat.shouldShowRequestPermissionRationale(
                this,Manifest.permission.READ_PHONE_STATE)
                || ActivityCompat.shouldShowRequestPermissionRationale(
                this,Manifest.permission.WRITE_EXTERNAL_STORAGE)){
            // If we should give explanation of requested permissions

            // Show an alert dialog here with request explanation
            AlertDialog.Builder builder = new AlertDialog.Builder(SplashScreenActivity.this);
            builder.setMessage("Location, Read Contacts and Write External" +
                    " Storage permissions are required to do the task.");
            builder.setTitle("Please grant those permissions");
            builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialogInterface, int i) {
                    ActivityCompat.requestPermissions(
                            SplashScreenActivity.this,
                            new String[]{
                                    Manifest.permission.ACCESS_FINE_LOCATION,
                                    Manifest.permission.READ_PHONE_STATE,
                                    Manifest.permission.WRITE_EXTERNAL_STORAGE
                            },

                            STORAGE_PERMISSION_CODE
                    );
                }
            });
            builder.setNeutralButton("Cancel",null);
            AlertDialog dialog = builder.create();
            dialog.show();
        }else{
            // Directly request for required permissions, without explanation
            ActivityCompat.requestPermissions(
                    this,
                    new String[]{
                            Manifest.permission.ACCESS_FINE_LOCATION,
                            Manifest.permission.READ_PHONE_STATE,
                            Manifest.permission.WRITE_EXTERNAL_STORAGE
                    },
                    STORAGE_PERMISSION_CODE
            );
        }
    }else {
        // Do something, when permissions are already granted
        Toast.makeText(SplashScreenActivity.this,"Permissions already granted",Toast.LENGTH_SHORT).show();
    }
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {

    //Checking the request code of our request
    if(requestCode == STORAGE_PERMISSION_CODE){

        //If permission is granted
        if(grantResults.length >0 && grantResults[0] == PackageManager.PERMISSION_GRANTED){

            //Displaying a toast
            Toast.makeText(this,"Permission granted now you can read the storage",Toast.LENGTH_LONG).show();
        }else{
            //Displaying another toast if permission is not granted
            Toast.makeText(this,"Oops you just denied the permission",Toast.LENGTH_LONG).show();
        }
    }
}

ただし、スプラッシュ スクリーン アクティビティを開く代わりに、on create メソッドが Collect.java アプリケーション クラスの on create メソッドでオーバーライドされ、コードが上書きされます。

@Override
public void onCreate() {
    singleton = this;

    super.onCreate();

    PropertyManager mgr = new PropertyManager(this);


    mActivityLogger = new ActivityLogger(

            mgr.getSingularProperty(PropertyManager.DEVICE_ID_PROPERTY));
}

アプリ内のほとんどのボタンが機能しないため、上記のコードを削除できない場合。

そして、エラーログは.

2020-02-27 16:36:12.159 31359-31359/com.gic.spade.android E/AndroidRuntime: 致命的な例外: メイン プロセス: com.gic.spade.android、PID: 31359 java.lang.RuntimeException: できませんアプリケーションを作成します com.gic.spade.android.application.Collect: java.lang.SecurityException: getDeviceId: ユーザー 10366 も現在のプロセスも android.permission.READ_PHONE_STATE を持っていません。android.app.ActivityThread.handleBindApplication(ActivityThread.java:6065) で android.app.ActivityThread.-wrap1(Unknown Source:0) で android.app.ActivityThread$H.handleMessage(ActivityThread.java:1764) で android. os.Handler.dispatchMessage(Handler.java:105) で android.os.Looper.loop(Looper.java:164) で android.app.ActivityThread.main(ActivityThread.java:6944) で java.lang.reflect.Method . com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:327) で (ネイティブ メソッド) を呼び出す com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1374) でlang.SecurityException: getDeviceId: ユーザー 10366 にも現在のプロセスにも android.permission.READ_PHONE_STATE がありません。android.os.Parcel.readException(Parcel.java:1959) で android.os.Parcel.readException(Parcel.java:1905) で com.android.internal.telephony.ITelephony$Stub$Proxy.getDeviceId(ITelephony.java) :5333) android.telephony.TelephonyManager.getDeviceId(TelephonyManager.java:1069) で com.gic.spade.android.logic.PropertyManager.(PropertyManager.java:135) で com.gic.spade.android.application.Collect .onCreate(Collect.java:260) android.app.Instrumentation で。 

4

1 に答える 1