12 lines
449 B
Plaintext
Vendored
12 lines
449 B
Plaintext
Vendored
// INTENTION_TEXT: Suppress: Add @SuppressLint("SdCardPath") annotation
|
|
// INSPECTION_CLASS: com.android.tools.idea.lint.AndroidLintSdCardPathInspection
|
|
|
|
import android.annotation.SuppressLint
|
|
import android.app.Activity
|
|
import android.os.Environment
|
|
|
|
|
|
class MainActivity : Activity() {
|
|
@SuppressLint("SdCardPath")
|
|
fun getSdCard(fromEnvironment: Boolean) = if (fromEnvironment) Environment.getExternalStorageDirectory().path else "/sdcard"
|
|
} |