We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi ,
How to call / use in java project .
I am unable to create Class object and call method .
in kotlin we can use AutoStartPermissionHelper.getInstance().getAutoStartPermission(context)
AutoStartPermissionHelper.getInstance().getAutoStartPermission(context)
in same way how can i use call in Java.
Thanks.
The text was updated successfully, but these errors were encountered:
Create Kotlin class inside your project:
import com.judemanutd.autostarter.AutoStartPermissionHelper class Autostarter { companion object{ @JvmStatic fun autostart(){ AutoStartPermissionHelper.getInstance().getAutoStartPermission(App.getAppContext()); } } }
and in bulid.gradle
plugins { id 'com.android.application' id "org.jetbrains.kotlin.android" version "1.5.30" }
Sorry, something went wrong.
kotlin dependency bloating project
No branches or pull requests
Hi ,
How to call / use in java project .
I am unable to create Class object and call method .
in kotlin we can use
AutoStartPermissionHelper.getInstance().getAutoStartPermission(context)
in same way how can i use call in Java.
Thanks.
The text was updated successfully, but these errors were encountered: