Questions tagged [appirater]

Appirater is a class file that can be added to present android/ios project so that it can facilitate user to add comments and rate app on Google Play/App Store.

appirater is a utility that can remind the user of your app to rate it on the app's store.

  • The source code for iOS appirater can be found here.
  • The source code for Android appirater can be found here.
39 questions
1
vote
1 answer

Will Parse working correctly if I set StoreKit's status to optional in Build Phases

I would like to use the Appirater library in my project, but after reading its install tutorial one thing is not clear. Be sure to change Required to Optional for StoreKit in your target's Build Phases » Link Binary with Libraries section. If I…
rihekopo
  • 3,241
  • 4
  • 34
  • 63
1
vote
2 answers

Appirater methods are not being called

I'm using Appirater and am very excited by the functionality, but unfortunately I can't get it to work. I use the following code in the appDelegate file when the app launches, as per instruction: [Appirater appLaunched]; I put a breakpoint on that…
mr_smiggs
  • 59
  • 5
1
vote
1 answer

how to setSignificantEventsUntilPrompt for Appirater

I've been trying to figure this out for HOURS and can't get it to work. This is what I have in appirater.m: static NSString *_appId = @"999999"; static double _daysUntilPrompt = 0; static NSInteger _usesUntilPrompt = 1; static NSInteger…
1
vote
1 answer

I have some problems with displaying Appirater and the next show

When you click on the button I want to call Appirater evry time, but when I press Remind Me Later that must appeared again in 5 days. Help me what my problem? Appirater setAppId:@"600544412"]; [Appirater setDaysUntilPrompt:0]; [Appirater…
Lipatov Eugen
  • 407
  • 3
  • 10
1
vote
2 answers

Rate and review within an app possible in iOS7?

I have heard that iOS7 allows users to rate and review an app within that app, avoiding the need to redirect to appstore and leaving the app. So far, I have only found the difference in the URL links for the rate feature in itunes as mentioned in…
Sundus Alamovic
  • 322
  • 2
  • 18
1
vote
3 answers

APPIRATER setsignificantevent iOS

Basically I am using appirator to let user for rating my app only when the user does some signification events.Here is it how I have done it. 1.Have set the following in my app delegate [Appirater setAppId:jumpStart.appID]; [Appirater…
1
vote
1 answer

iOS Appirater works when debug enabled, not disabled

I set APPIRATER_DAYS_UNTIL_PROMPT 0 APPIRATER_USES_UNTIL_PROMPT 5 and have [Appirater appLaunched:YES]; [Appirater appEnteredForeground:YES]; in my delegate class. However, after testing on a development device, and reopening the app 5 times, I…
user1467188
  • 617
  • 1
  • 10
  • 28
0
votes
0 answers

Two FireBase Errors in Xcode

I have these two error in my code and I am not sure how to fix them. One of the errors is for Appirater and the other one is for FireBaseAuth. I have looked up both of them and have not been able to find a solution. Below I have posted a screenshot…
0
votes
1 answer

iOS: Remove app rating limit for developer?

I want to test my app's SKStoreReviewController API rating. However, I believe it is block because I exceeded the three time review limit a year. Is there a way around this for a developer? Here is the code I am using currently. [Appirater…
Curt Rand
  • 1,025
  • 1
  • 9
  • 27
0
votes
1 answer

Appirater not available in AppDelegate

I have installed Appirater with Cocoapods however I can't see the class in AppDelegate for some reason. ` import UIKit import CoreData import UserNotifications @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window:…
richc
  • 1,648
  • 5
  • 20
  • 48
0
votes
1 answer

Can review rate app after delete and reinstall of the app iOS

I gone through the appirater sdk(iOS) on git, I have question. If i rated the app and then i deleted the app from device and again installed. In this case will appirater allows to rate again ?
user968597
  • 1,164
  • 2
  • 15
  • 30
0
votes
1 answer

Ios Appirater is not working properly in Ios 10

rate the app in ios , so i am using Appirater framework . but it's not working properly . Here is my code . after 5 day i have to set . and i am in debug mode . [Appirater setAppId:@"456546456"]; [Appirater setDaysUntilPrompt:0]; …
0
votes
2 answers

`[NSUserDefaults standardUserDefaults]` returns nil

I want to save some user preferences, but NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; just returns nil. iOS-Developper Library says, that this should return the existing shared defaults object or create one if none exists...…
Robin des Bois
  • 355
  • 2
  • 6
  • 20
0
votes
1 answer

App review page coming twice in AppStore while using Appirater

I implemented the Appirater in my application.It works fine. But when i click on Rate this App button on Appirater popup, it navigates me to Appstore to rate the app. when i click on 'Write a Review' button in AppStore and again same Page is coming,…
0
votes
2 answers

Appirater alert doesn't show up

When in debug mode, the alert shows up every time - it works fine! No alert shows up when: [Appirater setDaysUntilPrompt:0]; [Appirater setUsesUntilPrompt:0]; [Appirater setTimeBeforeReminding:2]; [Appirater setDebug:NO]; ... [Appirater…