adrop_ads_flutter 1.7.2
adrop_ads_flutter: ^1.7.2 copied to clipboard
AdropAds flutter plugin that shows ads using native platform views
Adrop Ads - Flutter #
Adrop ads plugin for Flutter
Language: English | 한국어
Getting Started #
- Adrop Console - Register your app and issue ad unit IDs
- Adrop Developer Docs - SDK integration and advanced features
- Test Ad Unit IDs - Use test IDs during development
Examples #
Adrop Ads #
| Ad Format | Example |
|---|---|
| Banner | banner_example.dart |
| Interstitial | interstitial_example.dart |
| Rewarded | rewarded_example.dart |
| Popup | popup_example.dart |
| Native | native_example.dart |
Targeting #
| Example | |
|---|---|
| Property & Event | property_example.dart |
Privacy & Consent #
Note: Consent features require AdropAdsBackfill module.
| Example | |
|---|---|
| Consent (GDPR/CCPA) | consent_example.dart |
How to Run Examples #
1. Clone the repository #
git clone https://github.com/OpenRhapsody/adrop_ads_flutter.git
2. Navigate to the example directory #
cd adrop_ads_flutter/example
3. Install dependencies #
flutter pub get
4. Add configuration file #
Download adrop_service.json from Adrop Console and place it in:
Android
android/app/src/main/assets/adrop_service.json
iOS
Important: For iOS, you must add
adrop_service.jsonthrough Xcode.
- Open
ios/Runner.xcworkspacein Xcode- Right-click on the
Runnerfolder and select "Add Files to Runner..."- Select
adrop_service.jsonand ensure "Copy items if needed" is checked- Make sure the file is added to the Runner target
5. Install iOS dependencies #
cd ios && pod install && cd ..
6. Build and run #
flutter run