Kaushil Ruparelia
Kaushil Ruparelia
I noticed that the anonymous class errors can be resolved by adding the following proguard rules: ``` # Play Core Proguard Rules: Play In-app Review -keep class com.google.android.play.core.review.ReviewManager { public...
@oblador do you think we should add these proguard rules to the project itself?
I did try with `READ_SMS` and without `allowAndroidSendWithoutReadPermission` but it does not respond to the callback. Works well on `iOS` only. Also, if I come back from SMS screen, the...
I could fix it by using Facebook Conceal (`STORAGE_TYPE.FB`) and adding the proguard rules to enable `FB`. This is a stop-gap solution and we'd still need to find the real...
Hi @slycoder, can you post a demo of where you structured that and how it should look? Looks like I am missing something and unable to do it.
This is a very important feature @ameer-taghavi @DylanVann Thank you very much!
When I changed the date description to [date descriptionWithLocale:[NSLocale currentLocale]] it works fine! Enjoy!
@Lilacxyz @sogwiz Sorry for late reply. See the below delegate method : -(void)calendarView:(VRGCalendarView *)calendarView dateSelected:(NSDate *)date { [date descriptionWithLocale:[NSLocale currentLocale]] ; } Its a timezone issue. You could also use:...
@Jia-Xian @esunly88 See the below delegate method : -(void)calendarView:(VRGCalendarView *)calendarView dateSelected:(NSDate *)date { [date descriptionWithLocale:[NSLocale currentLocale]] ; } Its a timezone issue. You could also use: NSCalendar *gregorian = [...