Skip to content

jacaTM/flutter_appzilo_offerwall

Repository files navigation

flutterappziloofferwall

Non-official flutter plugin for Appzilo Offer Wall
Fell free to help :)

Getting Started

Initialize the Appzilo plugin with an App key and an User ID.

AppziloOfferwall().init(appKey: 'yourappkey', userId: 'youruserid');  

Show Panel

AppziloOfferwall().show();  

Possible Errors

You may face some errors during build phase. Here's how to solve it: If it shows the following error:

attribute android:foregroundServiceType not found

You'll have to set the compileSdkVersion to 29. Go to android/app/build.gradle into your app and set compileSdkVersion 29 also set minSdkVersion 17

There might be an error related to

Could not find PersistentCookieJar.jar

To solve it, add on android/build.gradle the following code

buildscript {
	repositories {
		...
		maven { url "https://jitpack.io" }
	}
	...
}
allprojects {
	repositories {
		...
		maven { url "https://jitpack.io" }
	}
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published