geolite_sdk 0.0.1 copy "geolite_sdk: ^0.0.1" to clipboard
geolite_sdk: ^0.0.1 copied to clipboard

A Flutter package that provides integration with Geolite SDK for both Android and iOS platforms.

geolite_sdk #

A Flutter package that provides integration with Geolite SDK for both Android and iOS platforms.

Features #

  • Native SDK integration for both Android and iOS
  • Simple initialization API
  • Platform-specific implementation handling

Getting started #

Android Setup #

  1. Add the AAR file to your Android project:
    • Create a libs folder in the android directory of your app
    • Copy your AAR file into the libs folder
    • Add the following to your app's build.gradle:
      dependencies {
          implementation files('libs/your-sdk.aar')
      }
      

iOS Setup #

  1. Add your framework to the iOS project:
    • Add your framework to the ios directory of your app
    • Update the ios/geolite_sdk.podspec file to include your framework:
      s.vendored_frameworks = 'Path/To/Your/Framework.framework'
      

Usage #

import 'package:geolite_sdk/geolite_sdk.dart';

// Initialize the SDK
try {
  await GeoliteSdk.initialize();
  print('SDK initialized successfully');
} catch (e) {
  print('Failed to initialize SDK: $e');
}

Additional information #

For more information about using this package, please visit the GitHub repository.

License #

This project is licensed under the MIT License - see the LICENSE file for details.

2
likes
140
points
14
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package that provides integration with Geolite SDK for both Android and iOS platforms.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on geolite_sdk

Packages that implement geolite_sdk