AndroidX
-
No tests were found (Test code running failed)Android/Error 2019. 12. 26. 17:52
안드로이드에서 Test코드가 실행이안되며 No test were found 라고 에어를 출력한다면 gradle 에서 testInstrumentationRunner 가 예전 android.support로 되어 있을 수 있습니다. testInstrumentationRunner = 'android.support.test.runner.AndroidJUnitRunner' androidX 로 변경해줍니다. testInstrumentationRunner = 'androidx.test.runner.AndroidJUnitRunner'
-
Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory) from [com.android.support:support-compat:28.0.0]Android/Error 2019. 8. 3. 02:37
Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory) from [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91 is also present at [androidx.core:core:1.0.0] AndroidManifest.xml:22:18-86 value=(androidx.core.app.CoreComponentFactory). Suggestion: add 'tools:replace="android:appComponentFactory"' to element at AndroidManifest.xml:10:5-66..