1376c8f8cf
#KT-16624 Fixed #KT-16625 Fixed #KT-14947 Fixed
12 lines
238 B
Kotlin
Vendored
12 lines
238 B
Kotlin
Vendored
package com.myapp
|
|
|
|
import android.app.Activity
|
|
import android.content.Context
|
|
|
|
class MyActivity: Activity() {
|
|
object A {
|
|
fun doSomething(context: Context) {
|
|
context.getString(R.string.resource_id)
|
|
}
|
|
}
|
|
} |