96.3 - Beta (96103)
This commit is contained in:
parent
18dae46feb
commit
dde4628896
6 changed files with 13 additions and 9 deletions
|
@ -10,8 +10,8 @@ android {
|
|||
applicationId 'com.discord'
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 29
|
||||
versionCode 96102
|
||||
versionName "96.2 - Beta"
|
||||
versionCode 96103
|
||||
versionName "96.3 - Beta"
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="96102" android:versionName="96.2 - Beta" android:installLocation="auto" android:compileSdkVersion="30" android:compileSdkVersionCodename="11" package="com.discord" platformBuildVersionCode="30" platformBuildVersionName="11">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="96103" android:versionName="96.3 - Beta" android:installLocation="auto" android:compileSdkVersion="30" android:compileSdkVersionCodename="11" package="com.discord" platformBuildVersionCode="30" platformBuildVersionName="11">
|
||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="29"/>
|
||||
<uses-feature android:name="android.hardware.camera" android:required="false"/>
|
||||
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
|
||||
|
|
|
@ -92,12 +92,12 @@ public final class StoreApplicationCommands$requestApplicationCommandAutocomplet
|
|||
}
|
||||
|
||||
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
|
||||
public StoreApplicationCommands$requestApplicationCommandAutocompleteData$1(StoreApplicationCommands storeApplicationCommands, ApplicationCommandData applicationCommandData, Long l, long j) {
|
||||
public StoreApplicationCommands$requestApplicationCommandAutocompleteData$1(StoreApplicationCommands storeApplicationCommands, ApplicationCommandData applicationCommandData, long j, Long l) {
|
||||
super(0);
|
||||
this.this$0 = storeApplicationCommands;
|
||||
this.$data = applicationCommandData;
|
||||
this.$guildId = l;
|
||||
this.$channelId = j;
|
||||
this.$guildId = l;
|
||||
}
|
||||
|
||||
@Override // kotlin.jvm.functions.Function0
|
||||
|
@ -106,8 +106,12 @@ public final class StoreApplicationCommands$requestApplicationCommandAutocomplet
|
|||
Object obj;
|
||||
String access$generateNonce = StoreApplicationCommands.access$generateNonce(this.this$0);
|
||||
String version = this.$data.getApplicationCommand().getVersion();
|
||||
Long guildId = this.$data.getApplicationCommand().getGuildId();
|
||||
com.discord.api.commands.ApplicationCommandData applicationCommandData = new com.discord.api.commands.ApplicationCommandData(version, guildId != null ? String.valueOf(guildId.longValue()) : null, this.$data.getApplicationCommand().getId(), this.$data.getApplicationCommand().getName(), ApplicationCommandLocalSendDataKt.toRestParams(this.$data.getValues()));
|
||||
String valueOf = String.valueOf(this.$channelId);
|
||||
String valueOf2 = String.valueOf(this.$data.getApplication().getId());
|
||||
Long l = this.$guildId;
|
||||
RestAPIParams.ApplicationCommand applicationCommand = new RestAPIParams.ApplicationCommand(4, String.valueOf(this.$channelId), String.valueOf(this.$data.getApplication().getId()), String.valueOf(this.$guildId), new com.discord.api.commands.ApplicationCommandData(version, l != null ? String.valueOf(l.longValue()) : null, this.$data.getApplicationCommand().getId(), this.$data.getApplicationCommand().getName(), ApplicationCommandLocalSendDataKt.toRestParams(this.$data.getValues())), access$generateNonce);
|
||||
RestAPIParams.ApplicationCommand applicationCommand = new RestAPIParams.ApplicationCommand(4, valueOf, valueOf2, l != null ? String.valueOf(l.longValue()) : null, applicationCommandData, access$generateNonce);
|
||||
List<ApplicationCommandValue> values = this.$data.getValues();
|
||||
ArrayList arrayList = new ArrayList();
|
||||
for (ApplicationCommandValue applicationCommandValue : values) {
|
||||
|
|
|
@ -795,7 +795,7 @@ public final class StoreApplicationCommands extends StoreV2 {
|
|||
|
||||
public final void requestApplicationCommandAutocompleteData(Long l, long j, ApplicationCommandData applicationCommandData) {
|
||||
m.checkNotNullParameter(applicationCommandData, "data");
|
||||
this.dispatcher.schedule(new StoreApplicationCommands$requestApplicationCommandAutocompleteData$1(this, applicationCommandData, l, j));
|
||||
this.dispatcher.schedule(new StoreApplicationCommands$requestApplicationCommandAutocompleteData$1(this, applicationCommandData, j, l));
|
||||
}
|
||||
|
||||
public final void requestApplicationCommandsQuery(Long l, String str) {
|
||||
|
|
|
@ -314,7 +314,7 @@ public final class WidgetSettings extends AppFragment implements OnTabSelectedLi
|
|||
TextView textView = binding.f;
|
||||
m.checkNotNullExpressionValue(textView, "appInfoHeader");
|
||||
String string = getString(R.string.app_information);
|
||||
textView.setText(string + " - 96.2 - Beta (96102)");
|
||||
textView.setText(string + " - 96.3 - Beta (96103)");
|
||||
binding.A.setOnClickListener(new WidgetSettings$onViewBound$$inlined$with$lambda$3(this));
|
||||
binding.u.setOnClickListener(WidgetSettings$onViewBound$1$5.INSTANCE);
|
||||
binding.q.setOnClickListener(WidgetSettings$onViewBound$1$6.INSTANCE);
|
||||
|
|
|
@ -1432,7 +1432,7 @@
|
|||
<string name="color_picker_title">Select a color</string>
|
||||
<string name="color_picker_transparency">Transparency</string>
|
||||
<string name="color_picker_use_default">Use Default</string>
|
||||
<string name="res_2131887512_com_crashlytics_android_build_id">eeb7d21ed7a140ac9d10f3e9118a1c94</string>
|
||||
<string name="res_2131887512_com_crashlytics_android_build_id">264b9beafb9b4b4996ff1d0450370825</string>
|
||||
<string name="coming_soon">Coming Soon</string>
|
||||
<string name="command_accessibility_desc_app_header_item">Slash command application {applicationName}</string>
|
||||
<string name="command_accessibility_desc_app_item">{applicationName} application</string>
|
||||
|
|
Loading…
Reference in a new issue