mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-02-17 14:07:28 +08:00
rename RustDeskApplication to MainApplication (#13362)
Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
</queries>
|
||||
|
||||
<application
|
||||
android:name=".RustDeskApplication"
|
||||
android:name=".MainApplication"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="RustDesk"
|
||||
android:requestLegacyExternalStorage="true"
|
||||
|
||||
@@ -4,14 +4,14 @@ import android.app.Application
|
||||
import android.util.Log
|
||||
import ffi.FFI
|
||||
|
||||
class RustDeskApplication : Application() {
|
||||
class MainApplication : Application() {
|
||||
companion object {
|
||||
private const val TAG = "RustDeskApplication"
|
||||
private const val TAG = "MainApplication"
|
||||
}
|
||||
|
||||
override fun onCreate() {
|
||||
super.onCreate()
|
||||
Log.d(TAG, "RustDeskApplication onCreate")
|
||||
Log.d(TAG, "App start")
|
||||
FFI.onAppStart(applicationContext)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user