1 /*
2  * Copyright (C) 2020 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package android.permissionui.cts.usepermission
18 
19 import android.app.Activity
20 import android.content.Intent
21 import android.os.Bundle
22 import android.util.Log
23 
24 class RequestPermissionsActivity : Activity() {
onCreatenull25     override fun onCreate(savedInstanceState: Bundle?) {
26         super.onCreate(savedInstanceState)
27 
28         if (savedInstanceState != null) {
29             Log.w(TAG, "Activity was recreated. (Perhaps due to a configuration change?)")
30             return
31         }
32 
33         val permissions = intent.getStringArrayExtra("$packageName.PERMISSIONS")!!
34         requestPermissions(permissions, 1)
35     }
36 
onRequestPermissionsResultnull37     override fun onRequestPermissionsResult(
38         requestCode: Int,
39         permissions: Array<out String>,
40         grantResults: IntArray
41     ) {
42         super.onRequestPermissionsResult(requestCode, permissions, grantResults)
43 
44         setResult(
45             RESULT_OK,
46             Intent().apply {
47                 putExtra("$packageName.PERMISSIONS", permissions)
48                 putExtra("$packageName.GRANT_RESULTS", grantResults)
49             }
50         )
51         finish()
52     }
53 
54     companion object {
55         private val TAG = RequestPermissionsActivity::class.simpleName
56     }
57 }
58