You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the line 25 of ExampleInstrumentedTest.kt file, val appContext = InstrumentationRegistry.getTargetContext() should be replaced by val appContext = InstrumentationRegistry.getInstrumentation().getTargetContext() cause of the 'InstrumentationRegistry' is deprecated in Java, otherwise, the gradle cannot be built.
The text was updated successfully, but these errors were encountered:
In the line 25 of ExampleInstrumentedTest.kt file,
val appContext = InstrumentationRegistry.getTargetContext()
should be replaced byval appContext = InstrumentationRegistry.getInstrumentation().getTargetContext()
cause of the 'InstrumentationRegistry' is deprecated in Java, otherwise, the gradle cannot be built.The text was updated successfully, but these errors were encountered: