Saiedmomen
01/30/2019, 7:15 AMHadi Tok
01/30/2019, 8:12 AMBrian Mahecha
01/30/2019, 11:48 AMNir Golan
01/30/2019, 12:28 PMlocke
01/31/2019, 3:05 AM2019-01-30 22:03:38.844 29960-30028/? W/PackageManager: Failure retrieving text 0x7f0e001b in package com.example.voxcaster
android.content.res.Resources$NotFoundException: String resource ID #0x7f0e001b
at android.content.res.Resources.getText(Resources.java:348)
at android.app.ApplicationPackageManager.getText(ApplicationPackageManager.java:1678)
at android.content.pm.PackageItemInfo.loadUnsafeLabel(PackageItemInfo.java:204)
at android.content.pm.PackageItemInfo.loadLabel(PackageItemInfo.java:194)
at com.google.android.finsky.verifier.impl.ew.d(SourceFile:499)
at com.google.android.finsky.verifier.impl.ew.u(SourceFile:365)
at com.google.android.finsky.verifier.impl.ew.a(SourceFile:100)
at com.google.android.finsky.verifier.impl.go.a(SourceFile:109)
at com.google.android.finsky.verifier.impl.b.e.a(SourceFile:2)
at com.google.android.finsky.verifier.impl.b.e.doInBackground(SourceFile:6)
at android.os.AsyncTask$2.call(AsyncTask.java:333)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
at java.lang.Thread.run(Thread.java:764)
The app is building and installing just fine, but then at runtime the package manager can't find the string resource for the app name? I am very lost as to what could cause that.nerdstone
01/31/2019, 8:51 AMAnimesh
01/31/2019, 11:31 AMjava.lang.IllegalStateException: MyApplication.getInstance() must not be null
here is my function code snipped
fun Favoritable.isFavorite() : Boolean {
val user = MyApplication.getInstance().loginManager.loggedInUser
return isFavorite(user)
}
spierce7
01/31/2019, 6:31 PMOwen Carpenter
02/01/2019, 2:29 AMOwen Carpenter
02/01/2019, 2:29 AMprivate fun postData(resource: String, request: Model.Request, view: ImageButton){
view.setPressed(true)
disposable = apiService.postData(resource, request)
.subscribeOn(<http://Schedulers.io|Schedulers.io>())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(
{ r -> view.setPressed(false)
toast("Success")},
{ e -> toast("Error")}
)
}
neuber
02/02/2019, 12:32 AMghedeon
02/02/2019, 2:40 PMegek
02/02/2019, 3:16 PMViktor Vostrikov
02/02/2019, 8:32 PMBrian Mahecha
02/04/2019, 2:54 PMjava.lang.IllegalArgumentException: argument type mismatch
Whenever I click the Anko Preview tab. Thanks everyone! (edited). Plugin version: 0.10.7-2
and Anko version: 0.10.8
Android-Studio version: 3.3
fradiati
02/05/2019, 7:22 AMOleh Ponomarenko
02/05/2019, 2:50 PMtenprint
02/05/2019, 9:16 PMdave
02/06/2019, 8:46 AMWouter Vegter
02/07/2019, 2:32 PMbryan
02/07/2019, 6:40 PMLiveData
observer?dewildte
02/07/2019, 11:32 PModay
02/08/2019, 2:15 PMemma
02/08/2019, 5:03 PMDavide Giuseppe Farella
02/09/2019, 4:39 AMsealed class
be a good option for an abstract Fragment
?
sealed class BaseFragment: Fragment()
abstract class RootFragment: BaseFragment()
abstract class NestedFragment: BaseFragment()
mvbrenes
02/10/2019, 10:14 PMMockito-Kotlin
has been a pain if you are using the Android Jetitfier
. The library relies on a version of Mockito which has an updated version (1.9.0) of Byte-buddy
who is the real culprit here.
I was able to resolve this by adding:
android.jetifier.blacklist=byte-buddy
to my gradle.properties
file, now i can happily move on without forcing certain versions of Mockito or excluding libraries which gets kind of hairy when you have a lot of modules and dependencies.
Posting this here in case if helps anyone else 🙂LeoColman
02/11/2019, 10:26 AMNorbert Flas
02/11/2019, 12:18 PMShane Blackburn
02/11/2019, 8:52 PMlandoulsi
02/12/2019, 7:48 AMMockk
library on the common module: MyTest.kt: (74, 9): Unresolved reference: every
, does any one can help with this ?landoulsi
02/12/2019, 7:48 AMMockk
library on the common module: MyTest.kt: (74, 9): Unresolved reference: every
, does any one can help with this ?ahmedre
02/14/2019, 1:56 PM