91.1 - Alpha (91201)
This commit is contained in:
parent
9e1cb090ea
commit
1b59cead2e
7 changed files with 18 additions and 13 deletions
|
@ -10,8 +10,8 @@ android {
|
||||||
applicationId 'com.discord'
|
applicationId 'com.discord'
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 29
|
targetSdkVersion 29
|
||||||
versionCode 91200
|
versionCode 91201
|
||||||
versionName "91.0 - Alpha"
|
versionName "91.1 - Alpha"
|
||||||
|
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="91200" android:versionName="91.0 - Alpha" 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="91201" android:versionName="91.1 - Alpha" 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-sdk android:minSdkVersion="21" android:targetSdkVersion="29"/>
|
||||||
<uses-feature android:name="android.hardware.camera" android:required="false"/>
|
<uses-feature android:name="android.hardware.camera" android:required="false"/>
|
||||||
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
|
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
|
||||||
|
|
|
@ -17,6 +17,7 @@ public final class TrackVoiceAudioOutputModeEnabled implements AnalyticsSchema,
|
||||||
private final CharSequence toAudioOutputMode = null;
|
private final CharSequence toAudioOutputMode = null;
|
||||||
private TrackBase trackBase;
|
private TrackBase trackBase;
|
||||||
private final Long videoStreamCount = null;
|
private final Long videoStreamCount = null;
|
||||||
|
private final Long voiceStateCount = null;
|
||||||
|
|
||||||
@Override // com.discord.api.science.AnalyticsSchema
|
@Override // com.discord.api.science.AnalyticsSchema
|
||||||
public String b() {
|
public String b() {
|
||||||
|
@ -31,7 +32,7 @@ public final class TrackVoiceAudioOutputModeEnabled implements AnalyticsSchema,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
TrackVoiceAudioOutputModeEnabled trackVoiceAudioOutputModeEnabled = (TrackVoiceAudioOutputModeEnabled) obj;
|
TrackVoiceAudioOutputModeEnabled trackVoiceAudioOutputModeEnabled = (TrackVoiceAudioOutputModeEnabled) obj;
|
||||||
return m.areEqual(this.channelId, trackVoiceAudioOutputModeEnabled.channelId) && m.areEqual(this.channelType, trackVoiceAudioOutputModeEnabled.channelType) && m.areEqual(this.guildId, trackVoiceAudioOutputModeEnabled.guildId) && m.areEqual(this.rtcConnectionId, trackVoiceAudioOutputModeEnabled.rtcConnectionId) && m.areEqual(this.mediaSessionId, trackVoiceAudioOutputModeEnabled.mediaSessionId) && m.areEqual(this.fromAudioOutputMode, trackVoiceAudioOutputModeEnabled.fromAudioOutputMode) && m.areEqual(this.toAudioOutputMode, trackVoiceAudioOutputModeEnabled.toAudioOutputMode) && m.areEqual(this.videoStreamCount, trackVoiceAudioOutputModeEnabled.videoStreamCount);
|
return m.areEqual(this.channelId, trackVoiceAudioOutputModeEnabled.channelId) && m.areEqual(this.channelType, trackVoiceAudioOutputModeEnabled.channelType) && m.areEqual(this.guildId, trackVoiceAudioOutputModeEnabled.guildId) && m.areEqual(this.rtcConnectionId, trackVoiceAudioOutputModeEnabled.rtcConnectionId) && m.areEqual(this.mediaSessionId, trackVoiceAudioOutputModeEnabled.mediaSessionId) && m.areEqual(this.fromAudioOutputMode, trackVoiceAudioOutputModeEnabled.fromAudioOutputMode) && m.areEqual(this.toAudioOutputMode, trackVoiceAudioOutputModeEnabled.toAudioOutputMode) && m.areEqual(this.videoStreamCount, trackVoiceAudioOutputModeEnabled.videoStreamCount) && m.areEqual(this.voiceStateCount, trackVoiceAudioOutputModeEnabled.voiceStateCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
|
@ -51,10 +52,12 @@ public final class TrackVoiceAudioOutputModeEnabled implements AnalyticsSchema,
|
||||||
CharSequence charSequence4 = this.toAudioOutputMode;
|
CharSequence charSequence4 = this.toAudioOutputMode;
|
||||||
int hashCode7 = (hashCode6 + (charSequence4 != null ? charSequence4.hashCode() : 0)) * 31;
|
int hashCode7 = (hashCode6 + (charSequence4 != null ? charSequence4.hashCode() : 0)) * 31;
|
||||||
Long l4 = this.videoStreamCount;
|
Long l4 = this.videoStreamCount;
|
||||||
if (l4 != null) {
|
int hashCode8 = (hashCode7 + (l4 != null ? l4.hashCode() : 0)) * 31;
|
||||||
i = l4.hashCode();
|
Long l5 = this.voiceStateCount;
|
||||||
|
if (l5 != null) {
|
||||||
|
i = l5.hashCode();
|
||||||
}
|
}
|
||||||
return hashCode7 + i;
|
return hashCode8 + i;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String toString() {
|
public String toString() {
|
||||||
|
@ -73,6 +76,8 @@ public final class TrackVoiceAudioOutputModeEnabled implements AnalyticsSchema,
|
||||||
P.append(", toAudioOutputMode=");
|
P.append(", toAudioOutputMode=");
|
||||||
P.append(this.toAudioOutputMode);
|
P.append(this.toAudioOutputMode);
|
||||||
P.append(", videoStreamCount=");
|
P.append(", videoStreamCount=");
|
||||||
return a.F(P, this.videoStreamCount, ")");
|
P.append(this.videoStreamCount);
|
||||||
|
P.append(", voiceStateCount=");
|
||||||
|
return a.F(P, this.voiceStateCount, ")");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -323,7 +323,7 @@ public final class WidgetSettings extends AppFragment implements OnTabSelectedLi
|
||||||
TextView textView = binding.f;
|
TextView textView = binding.f;
|
||||||
m.checkNotNullExpressionValue(textView, "appInfoHeader");
|
m.checkNotNullExpressionValue(textView, "appInfoHeader");
|
||||||
String string = getString(R.string.app_information);
|
String string = getString(R.string.app_information);
|
||||||
textView.setText(string + " - 91.0 - Alpha (91200)");
|
textView.setText(string + " - 91.1 - Alpha (91201)");
|
||||||
binding.B.setOnClickListener(new WidgetSettings$onViewBound$$inlined$with$lambda$3(this));
|
binding.B.setOnClickListener(new WidgetSettings$onViewBound$$inlined$with$lambda$3(this));
|
||||||
binding.u.setOnClickListener(WidgetSettings$onViewBound$1$5.INSTANCE);
|
binding.u.setOnClickListener(WidgetSettings$onViewBound$1$5.INSTANCE);
|
||||||
binding.q.setOnClickListener(WidgetSettings$onViewBound$1$6.INSTANCE);
|
binding.q.setOnClickListener(WidgetSettings$onViewBound$1$6.INSTANCE);
|
||||||
|
|
|
@ -838,7 +838,7 @@
|
||||||
<string name="billing_external_description">!!{paymentGatewayName}!! transactions will not be listed below. To view !!{paymentGatewayName}!! transaction history or to change your !!{paymentGatewayName}!! payment method, [visit your !!{paymentGatewayName}!! Billing settings]({billingHistoryLink}).</string>
|
<string name="billing_external_description">!!{paymentGatewayName}!! transactions will not be listed below. To view !!{paymentGatewayName}!! transaction history or to change your !!{paymentGatewayName}!! payment method, [visit your !!{paymentGatewayName}!! Billing settings]({billingHistoryLink}).</string>
|
||||||
<string name="billing_external_header">You subscribed through !!{paymentGatewayName}!!</string>
|
<string name="billing_external_header">You subscribed through !!{paymentGatewayName}!!</string>
|
||||||
<string name="billing_external_manage_elsewhere">This is not supported for !!{paymentGatewayName}!! subscriptions. To manage your subscription, please [visit your !!{paymentGatewayName}!! Billing settings]({subscriptionManagementLink}).</string>
|
<string name="billing_external_manage_elsewhere">This is not supported for !!{paymentGatewayName}!! subscriptions. To manage your subscription, please [visit your !!{paymentGatewayName}!! Billing settings]({subscriptionManagementLink}).</string>
|
||||||
<string name="billing_final_price_may_change">Final price and currency will be based on the country that issued your payment method. [Learn More]({documentationLink}).</string>
|
<string name="billing_final_price_may_change">Final price and currency will be based on your selected payment method and the country that issued it. [Learn More]({documentationLink}).</string>
|
||||||
<string name="billing_gift_copied">Copied!</string>
|
<string name="billing_gift_copied">Copied!</string>
|
||||||
<string name="billing_gift_link">Gift Link</string>
|
<string name="billing_gift_link">Gift Link</string>
|
||||||
<string name="billing_gift_purchase_tooltip">This was a gift</string>
|
<string name="billing_gift_purchase_tooltip">This was a gift</string>
|
||||||
|
|
|
@ -838,7 +838,7 @@
|
||||||
<string name="billing_external_description">[¡¡»{paymentGatewayName}«¡¡ ţŕåñšåçţîöñš ŵîļļ ñöţ ɓé ļîšţéð ɓéļöŵ. Ţö Vîéŵ ¡¡»{paymentGatewayName}«¡¡ ţŕåñšåçţîöñ ĥîšţöŕý öŕ ţö çĥåñĝé ýöûŕ ¡¡»{paymentGatewayName}«¡¡ þåýḿéñţ ḿéţĥöð, [Vîšîţ ýöûŕ ¡¡»{paymentGatewayName}«¡¡ βîļļîñĝ šéţţîñĝš](»{billingHistoryLink}«). one two three four five six seven eight nine ten eleven twelve thirteen fourteen fiveteen sixteen seventeen nineteen twenty one two three four five six seven]</string>
|
<string name="billing_external_description">[¡¡»{paymentGatewayName}«¡¡ ţŕåñšåçţîöñš ŵîļļ ñöţ ɓé ļîšţéð ɓéļöŵ. Ţö Vîéŵ ¡¡»{paymentGatewayName}«¡¡ ţŕåñšåçţîöñ ĥîšţöŕý öŕ ţö çĥåñĝé ýöûŕ ¡¡»{paymentGatewayName}«¡¡ þåýḿéñţ ḿéţĥöð, [Vîšîţ ýöûŕ ¡¡»{paymentGatewayName}«¡¡ βîļļîñĝ šéţţîñĝš](»{billingHistoryLink}«). one two three four five six seven eight nine ten eleven twelve thirteen fourteen fiveteen sixteen seventeen nineteen twenty one two three four five six seven]</string>
|
||||||
<string name="billing_external_header">[Ýöû šûɓšçŕîɓéð ţĥŕöûĝĥ ¡¡»{paymentGatewayName}«¡¡ one two three four]</string>
|
<string name="billing_external_header">[Ýöû šûɓšçŕîɓéð ţĥŕöûĝĥ ¡¡»{paymentGatewayName}«¡¡ one two three four]</string>
|
||||||
<string name="billing_external_manage_elsewhere">[Ţĥîš îš ñöţ šûþþöŕţéð ƒöŕ ¡¡»{paymentGatewayName}«¡¡ šûɓšçŕîþţîöñš. Ţö ḿåñåĝé ýöûŕ šûɓšçŕîþţîöñ, þļéåšé [Vîšîţ ýöûŕ ¡¡»{paymentGatewayName}«¡¡ βîļļîñĝ šéţţîñĝš](»{subscriptionManagementLink}«). one two three four five six seven eight nine ten eleven twelve thirteen fourteen fiveteen sixteen seventeen nineteen twenty]</string>
|
<string name="billing_external_manage_elsewhere">[Ţĥîš îš ñöţ šûþþöŕţéð ƒöŕ ¡¡»{paymentGatewayName}«¡¡ šûɓšçŕîþţîöñš. Ţö ḿåñåĝé ýöûŕ šûɓšçŕîþţîöñ, þļéåšé [Vîšîţ ýöûŕ ¡¡»{paymentGatewayName}«¡¡ βîļļîñĝ šéţţîñĝš](»{subscriptionManagementLink}«). one two three four five six seven eight nine ten eleven twelve thirteen fourteen fiveteen sixteen seventeen nineteen twenty]</string>
|
||||||
<string name="billing_final_price_may_change">[Fîñåļ þŕîçé åñð çûŕŕéñçý ŵîļļ ɓé ɓåšéð öñ ţĥé çöûñţŕý ţĥåţ îššûéð ýöûŕ þåýḿéñţ ḿéţĥöð. [Ļéåŕñ Ḿöŕé](»{documentationLink}«). one two three four five six seven eight nine ten eleven twelve thirteen fourteen fiveteen sixteen seventeen]</string>
|
<string name="billing_final_price_may_change">[Fîñåļ þŕîçé åñð çûŕŕéñçý ŵîļļ ɓé ɓåšéð öñ ýöûŕ šéļéçţéð þåýḿéñţ ḿéţĥöð åñð ţĥé çöûñţŕý ţĥåţ îššûéð îţ. [Ļéåŕñ Ḿöŕé](»{documentationLink}«). one two three four five six seven eight nine ten eleven twelve thirteen fourteen fiveteen sixteen seventeen nineteen twenty]</string>
|
||||||
<string name="billing_gift_copied">[Çöþîéð¡ one two]</string>
|
<string name="billing_gift_copied">[Çöþîéð¡ one two]</string>
|
||||||
<string name="billing_gift_link">[Ĝîƒţ Ļîñķ one two]</string>
|
<string name="billing_gift_link">[Ĝîƒţ Ļîñķ one two]</string>
|
||||||
<string name="billing_gift_purchase_tooltip">[Ţĥîš ŵåš å ĝîƒţ one two three]</string>
|
<string name="billing_gift_purchase_tooltip">[Ţĥîš ŵåš å ĝîƒţ one two three]</string>
|
||||||
|
|
|
@ -839,7 +839,7 @@
|
||||||
<string name="billing_external_description">!!{paymentGatewayName}!! transactions will not be listed below. To view !!{paymentGatewayName}!! transaction history or to change your !!{paymentGatewayName}!! payment method, [visit your !!{paymentGatewayName}!! Billing settings]({billingHistoryLink}).</string>
|
<string name="billing_external_description">!!{paymentGatewayName}!! transactions will not be listed below. To view !!{paymentGatewayName}!! transaction history or to change your !!{paymentGatewayName}!! payment method, [visit your !!{paymentGatewayName}!! Billing settings]({billingHistoryLink}).</string>
|
||||||
<string name="billing_external_header">You subscribed through !!{paymentGatewayName}!!</string>
|
<string name="billing_external_header">You subscribed through !!{paymentGatewayName}!!</string>
|
||||||
<string name="billing_external_manage_elsewhere">This is not supported for !!{paymentGatewayName}!! subscriptions. To manage your subscription, please [visit your !!{paymentGatewayName}!! Billing settings]({subscriptionManagementLink}).</string>
|
<string name="billing_external_manage_elsewhere">This is not supported for !!{paymentGatewayName}!! subscriptions. To manage your subscription, please [visit your !!{paymentGatewayName}!! Billing settings]({subscriptionManagementLink}).</string>
|
||||||
<string name="billing_final_price_may_change">Final price and currency will be based on the country that issued your payment method. [Learn More]({documentationLink}).</string>
|
<string name="billing_final_price_may_change">Final price and currency will be based on your selected payment method and the country that issued it. [Learn More]({documentationLink}).</string>
|
||||||
<string name="billing_gift_copied">Copied!</string>
|
<string name="billing_gift_copied">Copied!</string>
|
||||||
<string name="billing_gift_link">Gift Link</string>
|
<string name="billing_gift_link">Gift Link</string>
|
||||||
<string name="billing_gift_purchase_tooltip">This was a gift</string>
|
<string name="billing_gift_purchase_tooltip">This was a gift</string>
|
||||||
|
@ -1390,7 +1390,7 @@
|
||||||
<string name="color_picker_title">Select a color</string>
|
<string name="color_picker_title">Select a color</string>
|
||||||
<string name="color_picker_transparency">Transparency</string>
|
<string name="color_picker_transparency">Transparency</string>
|
||||||
<string name="color_picker_use_default">Use Default</string>
|
<string name="color_picker_use_default">Use Default</string>
|
||||||
<string name="res_2131887470_com_crashlytics_android_build_id">67aaf02eb35246b8a8821f9ec5bd51ec</string>
|
<string name="res_2131887470_com_crashlytics_android_build_id">d979e00ad0d74294b48125aef5e5a57d</string>
|
||||||
<string name="coming_soon">Coming Soon</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_header_item">Slash command application {applicationName}</string>
|
||||||
<string name="command_accessibility_desc_app_item">{applicationName} application</string>
|
<string name="command_accessibility_desc_app_item">{applicationName} application</string>
|
||||||
|
|
Loading…
Reference in a new issue