mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 08:48:39 +09:00
Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android
This commit is contained in:
parent
85045bf6be
commit
c9b411d6cd
3891 changed files with 0 additions and 428084 deletions
|
|
@ -1,79 +0,0 @@
|
|||
//
|
||||
// Adjust.java
|
||||
// Adjust
|
||||
//
|
||||
// Created by Christian Wellenbrock on 2012-10-11.
|
||||
// Copyright (c) 2012-2014 adjust GmbH. All rights reserved.
|
||||
// See the file MIT-LICENSE for copying permission.
|
||||
//
|
||||
|
||||
package com.adjust.sdk;
|
||||
|
||||
import android.net.Uri;
|
||||
|
||||
/**
|
||||
* The main interface to Adjust.
|
||||
* Use the methods of this class to tell Adjust about the usage of your app.
|
||||
* See the README for details.
|
||||
*/
|
||||
public class Adjust {
|
||||
|
||||
private static AdjustInstance defaultInstance;
|
||||
|
||||
private Adjust() {
|
||||
}
|
||||
|
||||
public static synchronized AdjustInstance getDefaultInstance() {
|
||||
if (defaultInstance == null) {
|
||||
defaultInstance = new AdjustInstance();
|
||||
}
|
||||
return defaultInstance;
|
||||
}
|
||||
|
||||
public static void onCreate(AdjustConfig adjustConfig) {
|
||||
AdjustInstance adjustInstance = Adjust.getDefaultInstance();
|
||||
adjustInstance.onCreate(adjustConfig);
|
||||
}
|
||||
|
||||
public static void trackEvent(AdjustEvent event) {
|
||||
AdjustInstance adjustInstance = Adjust.getDefaultInstance();
|
||||
adjustInstance.trackEvent(event);
|
||||
}
|
||||
|
||||
public static void onResume() {
|
||||
AdjustInstance adjustInstance = Adjust.getDefaultInstance();
|
||||
adjustInstance.onResume();
|
||||
}
|
||||
|
||||
public static void onPause() {
|
||||
AdjustInstance adjustInstance = Adjust.getDefaultInstance();
|
||||
adjustInstance.onPause();
|
||||
}
|
||||
|
||||
public static void setEnabled(boolean enabled) {
|
||||
AdjustInstance adjustInstance = Adjust.getDefaultInstance();
|
||||
adjustInstance.setEnabled(enabled);
|
||||
}
|
||||
|
||||
public static boolean isEnabled() {
|
||||
AdjustInstance adjustInstance = Adjust.getDefaultInstance();
|
||||
return adjustInstance.isEnabled();
|
||||
}
|
||||
|
||||
public static void appWillOpenUrl(Uri url) {
|
||||
AdjustInstance adjustInstance = Adjust.getDefaultInstance();
|
||||
adjustInstance.appWillOpenUrl(url);
|
||||
}
|
||||
|
||||
public static void setReferrer(String referrer) {
|
||||
AdjustInstance adjustInstance = Adjust.getDefaultInstance();
|
||||
adjustInstance.sendReferrer(referrer);
|
||||
}
|
||||
|
||||
public static void setOfflineMode(boolean enabled) {
|
||||
AdjustInstance adjustInstance = Adjust.getDefaultInstance();
|
||||
adjustInstance.setOfflineMode(enabled);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue