Initial import of ADIF API reverse-engineering toolkit

This commit is contained in:
2025-12-16 08:37:56 +01:00
commit 60388529c1
11486 changed files with 1086536 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.google.android.gms.actions;
/* loaded from: classes3.dex */
public class ItemListIntents {
public static final String ACTION_ACCEPT_ITEM = "com.google.android.gms.actions.ACCEPT_ITEM";
public static final String ACTION_APPEND_ITEM_LIST = "com.google.android.gms.actions.APPEND_ITEM_LIST";
public static final String ACTION_CREATE_ITEM_LIST = "com.google.android.gms.actions.CREATE_ITEM_LIST";
public static final String ACTION_DELETE_ITEM = "com.google.android.gms.actions.DELETE_ITEM";
public static final String ACTION_DELETE_ITEM_LIST = "com.google.android.gms.actions.DELETE_ITEM_LIST";
public static final String ACTION_REJECT_ITEM = "com.google.android.gms.actions.REJECT_ITEM";
public static final String EXTRA_ITEM_NAME = "com.google.android.gms.actions.extra.ITEM_NAME";
public static final String EXTRA_ITEM_NAMES = "com.google.android.gms.actions.extra.ITEM_NAMES";
public static final String EXTRA_ITEM_QUERY = "com.google.android.gms.actions.extra.ITEM_QUERY";
public static final String EXTRA_LIST_NAME = "com.google.android.gms.actions.extra.LIST_NAME";
public static final String EXTRA_LIST_QUERY = "com.google.android.gms.actions.extra.LIST_QUERY";
private ItemListIntents() {
}
}

View File

@@ -0,0 +1,14 @@
package com.google.android.gms.actions;
/* loaded from: classes3.dex */
public class NoteIntents {
public static final String ACTION_APPEND_NOTE = "com.google.android.gms.actions.APPEND_NOTE";
public static final String ACTION_CREATE_NOTE = "com.google.android.gms.actions.CREATE_NOTE";
public static final String ACTION_DELETE_NOTE = "com.google.android.gms.actions.DELETE_NOTE";
public static final String EXTRA_NAME = "com.google.android.gms.actions.extra.NAME";
public static final String EXTRA_NOTE_QUERY = "com.google.android.gms.actions.extra.NOTE_QUERY";
public static final String EXTRA_TEXT = "com.google.android.gms.actions.extra.TEXT";
private NoteIntents() {
}
}

View File

@@ -0,0 +1,9 @@
package com.google.android.gms.actions;
/* loaded from: classes3.dex */
public class ReserveIntents {
public static final String ACTION_RESERVE_TAXI_RESERVATION = "com.google.android.gms.actions.RESERVE_TAXI_RESERVATION";
private ReserveIntents() {
}
}

View File

@@ -0,0 +1,10 @@
package com.google.android.gms.actions;
/* loaded from: classes3.dex */
public class SearchIntents {
public static final String ACTION_SEARCH = "com.google.android.gms.actions.SEARCH_ACTION";
public static final String EXTRA_QUERY = "query";
private SearchIntents() {
}
}