Results 10 comments of Muhammad Wajeeh

I was also banging my head on wall trying to understand what I was doing wrong in my production app. Seems like with androidx, below Android 8 shows this Toast.

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { if (getPackageManager().hasSystemFeature(PackageManager.FEATURE_PICTURE_IN_PICTURE)) { if (!isInPictureInPictureMode()) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { enterPictureInPictureMode(pipParams.build()); } else { enterPictureInPictureMode(); } } } } Still getting exception on some...

I recently moved to FCM and I am unable to compile my code because there is no GCM. Anyone who moves to FCM can no longer use this library. I...

@yigit I recently moved to FCM and I am unable to compile my code because there is no GCM. Anyone who moves to FCM can no longer use this library....

Android Studio > Preferences (or Settings) > External Tools > + Now when the vector file is open in Android studio Tools > External Tools > Avocado. 🎉

I think prompt timing calculation is where Amplify shines, I don't use any UI from Amplify. Those two parts can be separate in different modules anyway. How does ``` com.github.stkent:amplify-core:2.2.2...

I am constantly getting ``` E/libc++abi: terminating with uncaught exception of type realm::util::DecryptionFailed: Decryption failed Exception backtrace: A/libc: Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 3713 (e.messenger.dev), pid...

Only way to make this project compile is to add following lines to your own project which will override this libs resources which are causing compilation errors: ``` #00000000 ```...

I want it to add omitempty to everything but `# @genqlient(omitempty: true)` is throwing `omitempty may only be used on optional arguments`. Here is my mutaion: ``` # @genqlient(omitempty: true)...

@jskrzypek ``` enum LeadPracticeType { SPEECH_LANGUAGE_PATHOLOGY } ``` Generates: ``` type LeadPracticeType string const ( LeadPracticeTypeSpeechLANGuagePathology LeadPracticeType = "SPEECH_LANGUAGE_PATHOLOGY" ) ``` If we specify following config: ``` go_initialisms: replace_defaults: false...