Application is base class in Android, which contains all components like activites,services... The Application class is first instanitated while running any application. We can write Custom Application class by extending the Application class. class MyApplication extends Application{ @Override } } We can declare any single instance classes here and use entire application. To execute this class we need to set Application name in manifest file.
public void onCreate() {
super.onCreate();
How to convert DP to Pixel and Pixel to Dp?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
What is "shared preferences" in Android ?
What happens next when the device switches between portrait and landscape?
How to find Android Device UDID or unique ID?
What is ANR? How to avoid and resolve it?
Symmetric vs Asymmetric Encryption in Android Server - RRutors
How to get complete address from latitude and longitude?
Hide/Disable soft keyboard on Activity launch: Android
Decompile APK Files: How to Get Source Code - RRutors Guide
How can i comment inside xml file in android studio?
How do I generate random numbers in Dart?
How to start a new activity on button click
How to get screen size (width,height) in Android?
Key Points to remember while develop the Android Application.
How do i load image from drawable folder in Jetpack Compose?
What are the notifications available in android?
Set Activity to Fullscreen Mode in Android - RRutors
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
How to install/ uninstall apk by command line ADB
Fix Android Emulator Kill Error When Running Your App
What is Android?
What is Intent? What is the difference between an implicit intent and an explicit intent?
What are Android Versions available?
How to reduce APK package size?
How to Use Deprecated Handler() in Android - RRutors Guide
How to copy database from assets folder in android using kotlin
Add Jar/Library Files as Dependency in Android Studio
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
Check List for Generate Signed APK Android
What is Application?
How to Exit android app on back pressed?
How to stop EditText focus at Activity startup in Android?
What is NetworkOnMainThread Exception?
How to Generate signed apk with android studio
FCM Not Receiving Notifications in Android - RRutors
How to validate email address in Android with Kotlin?
How to save activity State in Android?
What is the Different Between val and var in Kotlin?
Fix Duplicate Files in APK Build.gradle Issue - RRutors