如果在调试模式下运行,我已经声明并定义了代码。我的调试器永远不会达到这一点
舱单声明:
<application
android:name=".application.CaringApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/MyAppTheme"/>
CaringApplication.kt
class CaringApplication : Application() {
val TAG = CaringApplication::class.java!!.simpleName
override fun onCreate() {
super.onCreate()
Fabric.with(this, Crashlytics())
}
}
CaringApplication
无法访问
答案 0 :(得分:0)
添加TextView
值时,请确保包名称正确
还要确保您的构建成功完成,没有任何问题
尝试使缓存无效并重新启动
答案 1 :(得分:0)
写整个包路径,而不是只写类名
例如清单中的com.packageName.subPackageName.class
。
编写后,按Ctrl +左键单击类名,它应将您重定向到您自己的Application类。