All Projects → AppsFlyerSDK → appsflyer-oaid

AppsFlyerSDK / appsflyer-oaid

Licence: MIT license
AppsFlyer OAID collection

Programming Languages

java
68154 projects - #9 most used programming language
kotlin
9241 projects

Projects that are alternatives of or similar to appsflyer-oaid

hms-push-serverdemo-php
PHP sample code encapsulates APIs of the HUAWEI Push Kit server.It provides many sample PHP programs about quick access to HUAWEI Push Kit for your reference or usage.
Stars: ✭ 21 (+5%)
Mutual labels:  huawei
huawei solar
Home Assistant integration for Huawei Solar inverters via Modbus
Stars: ✭ 126 (+530%)
Mutual labels:  huawei
hms-av-pipeline-demo
HUAWEI AV Pipeline Kit sample code project, which contains the Java sample code to implement functions like video playback, video super-resolution and media asset management. C++ sample code is contained for calling MediaFilter to use the sound event detection plugin.
Stars: ✭ 14 (-30%)
Mutual labels:  huawei
beboptwo4g
4G/LTE softmod for the Parrot Bebop 2
Stars: ✭ 50 (+150%)
Mutual labels:  huawei
topolograph
Topolograph.com is an online project which can visualize OSPF/ISIS topology based on single OSPF LinkState DataBase scrapping from one network device ( thanks OSPF =). Then you can not only see (and check) the shortest path from source to destination, but also see the outcome from link or node failure along the path to the destination. The exist…
Stars: ✭ 84 (+320%)
Mutual labels:  huawei
hms-health-demo-java
HMS Health demo code provides demo programs for your reference or usage. Developers can access the Huawei Health Platform and obtain sports & health data by integrating HUAWEI Health.
Stars: ✭ 37 (+85%)
Mutual labels:  huawei
hms-push-serverdemo-java
Java sample code encapsulates APIs of the HUAWEI Push Kit server. It provides many sample programs for your reference or usage.
Stars: ✭ 39 (+95%)
Mutual labels:  huawei
solar-logger
A datalogger for a solar inverter. Stores data in influxdb and displays it in grafana. Has load diverting capability, to use the inverter's excess power
Stars: ✭ 53 (+165%)
Mutual labels:  huawei
bts-ce-lite
BTS-CE-Lite (Boda-Lite) is a cross platform vendor and technology agnostic telecommunication network management desktop application
Stars: ✭ 24 (+20%)
Mutual labels:  huawei
mobile-messaging-cordova-plugin
Mobile Messaging SDK plugin for Cordova projects
Stars: ✭ 19 (-5%)
Mutual labels:  huawei
hms-FIDO-demo-java
HMS FIDO demo, including fido2 demo, bioauthn demo and bioauthn-androidx demo.
Stars: ✭ 17 (-15%)
Mutual labels:  huawei
springboot-microservice-with-spring-cloud-netflix
msa backend service example with springboot REST API
Stars: ✭ 36 (+80%)
Mutual labels:  msa
hms-health-demo-kotlin
HMS Health demo code provides demo programs for your reference or usage. Developers can access the Huawei Health Platform and obtain sports & health data by integrating HUAWEI Health.
Stars: ✭ 21 (+5%)
Mutual labels:  huawei
Xamarin.Android.Huawei.Hms.Demo
Using Huawei Mobile Services in Xamarin
Stars: ✭ 25 (+25%)
Mutual labels:  huawei
Huawei-Bootloader-Unlocker
This little tool let you unlock your bootloader of your huawei family device easily
Stars: ✭ 176 (+780%)
Mutual labels:  huawei
hms-audio-editor-demo
HUAWEI Audio Kit provides a wide range of audio editing capabilities, including auido import/export/editing/extracting and format conversion. This sample code describes how to integrate the Audio Editor Kit SDK.
Stars: ✭ 24 (+20%)
Mutual labels:  huawei
hms-cordova-plugin
This repo contains all of Cordova HMS plugins.
Stars: ✭ 78 (+290%)
Mutual labels:  huawei
core
Enterprise Grade #NodeJS Platform implementing Industry Standards & Patterns in order to provide Connectivity, Stability, High-Availability and High-Performance
Stars: ✭ 54 (+170%)
Mutual labels:  msa
huawei-account-demo
Sample code for quickly integrate Huawei ID. HUAWEI Account Kit provides developers with simple, secure, and quick sign-in and authorization functions.
Stars: ✭ 39 (+95%)
Mutual labels:  huawei
Huawei2019CodeCraft
2019年华为软件精英挑战赛代码仓储,最美代码奖,初赛复赛西北第一,决赛32强
Stars: ✭ 36 (+80%)
Mutual labels:  huawei

OAID collection

Release Artifacts

Table of content

Supported devices:

Manufacturer OS version
Huawei HMS 2.6.2
Xiaomi MIUI 10.2
Vivo Android 9
OPPO Color OS 7.0
Lenovo ZUI 11.4
Samsung, Meizu, Nubia, ZTE, ASUS, OnePlus, Black shark, Motorola, Freeme OS Android 10\

Supported MSA library version: 1.0.23

Adding to your project

module build.gradle

Download AAR provided by the MSA to your module libs folder Note: MSA AAR requires min API level 21

implementation 'com.appsflyer:oaid:6.1.2'
implementation files('libs/oaid_sdk_1.0.23.aar')

Standalone usage

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        Thread {
            val info = OaidClient(this, 1, TimeUnit.SECONDS).fetch()
            if (info != null) {
                println(info.id)
                val lat = info.lat
                if (lat != null) println(lat)
            }
        }.start()
    }
}

Important

Time to fetch oaid is around 10 - 1000 ms


🛠 In order for us to provide optimal support, we would kindly ask you to submit any issues to [email protected]

When submitting an issue please specify your AppsFlyer sign-up (account) email , your app ID , production steps, logs, code snippets and any additional relevant information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].