mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 00:38: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,35 +0,0 @@
|
|||
package com.adjust.sdk;
|
||||
|
||||
public enum ActivityKind {
|
||||
UNKNOWN, SESSION, EVENT, CLICK, ATTRIBUTION;
|
||||
|
||||
public static ActivityKind fromString(String string) {
|
||||
if ("session".equals(string)) {
|
||||
return SESSION;
|
||||
} else if ("event".equals(string)) {
|
||||
return EVENT;
|
||||
} else if ("click".equals(string)) {
|
||||
return CLICK;
|
||||
} else if ("attribution".equals(string)) {
|
||||
return ATTRIBUTION;
|
||||
} else {
|
||||
return UNKNOWN;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
switch (this) {
|
||||
case SESSION:
|
||||
return "session";
|
||||
case EVENT:
|
||||
return "event";
|
||||
case CLICK:
|
||||
return "click";
|
||||
case ATTRIBUTION:
|
||||
return "attribution";
|
||||
default:
|
||||
return "unknown";
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue