Diego Stamigni

Results 34 comments of Diego Stamigni

Any update on this?

@martijn-nap just add `-keep public class android.arch.paging.** { *; }` to your proguard cfg

That's what I have and works fine to me @martijn-nap. Try adding the notwarn too, such that you end up with: ``` -keep class android.arch.paging.** { *; } -dontwarn android.arch.paging.**...

> Removes the warning (ofcourse) but makes the App startup and instantly crashes. Also adds a lot of other errors... > ![err](https://user-images.githubusercontent.com/9800684/63027731-c5489a00-bead-11e9-8775-137d2c5af7ac.png) It might be for other reasons tho, following...

Yeah, you're missing something else in your proguard cfg. Afaik it _should_ tell you if you check carefully your build log tho. After all, I've been populating my cfg from...

Thanks @scottcc, just bear in mind that I've changed the Travis link in the README.md and the git repo URL in the Podspec file.

I see. I'll try to look into that. Thanks for the update @patrickjquinn

Hi @KenmuHuang > It never execute public delegate method in the iOS 11 I'm not sure I understand this. Do you mean that no method in protocol STKAudioPlayerDelegate gets called?

Has been a while now, but worth trying to switch the AV category from playback to PlayAndRecord? In the ExampleApp/AppDelegate we have: ``` [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:&error]; ``` which you...