Deploiement Playstore

master
cldupland 5 years ago
parent b6f18663d2
commit d8f815fa8e

@ -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="17" android:versionName="5.3" package="com.uca.thegameextreme" android:installLocation="auto"> <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="18" android:versionName="5.4" package="com.uca.thegameextreme" android:installLocation="auto">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="28" /> <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="28" />
<application android:icon="@drawable/TrierImageB" android:label="OrderStacks"></application> <application android:icon="@drawable/TrierImageB" android:label="OrderStacks"></application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

@ -72,13 +72,6 @@
VerticalTextAlignment="Center" VerticalTextAlignment="Center"
HorizontalTextAlignment="Center"/> HorizontalTextAlignment="Center"/>
<Label
TextColor="{DynamicResource WhiteColor}"
FontSize="16"
x:Name="nbPlayersChoose"
VerticalTextAlignment="Center"
HorizontalTextAlignment="Center"/>
<Slider <Slider
x:Name="PlayerSelecter" x:Name="PlayerSelecter"
@ -90,17 +83,27 @@
VerticalOptions="Center" VerticalOptions="Center"
WidthRequest="150" WidthRequest="150"
Value="1"/> Value="1"/>
<Label
TextColor="{DynamicResource WhiteColor}"
FontSize="16"
x:Name="nbPlayersChoose"
VerticalTextAlignment="Center"
HorizontalTextAlignment="Center"/>
</StackLayout> </StackLayout>
<StackLayout <StackLayout
Grid.Row="3" Grid.Row="3"
Orientation="Horizontal"> Orientation="Horizontal">
<Label <Label
Text="{x:Static resources:AppResources.StrValueType}" Text="{x:Static resources:AppResources.StrValueType}"
TextColor="{DynamicResource WhiteColor}" TextColor="{DynamicResource WhiteColor}"
FontSize="16" FontSize="16"
VerticalTextAlignment="Center" VerticalTextAlignment="Center"
HorizontalTextAlignment="Center"/> HorizontalTextAlignment="Center"/>
<Picker <Picker
x:Name="SelectMode" x:Name="SelectMode"
BackgroundColor="{DynamicResource SkyBlueColor}" BackgroundColor="{DynamicResource SkyBlueColor}"
@ -108,20 +111,15 @@
VerticalOptions="Center" VerticalOptions="Center"
MinimumWidthRequest="30" MinimumWidthRequest="30"
WidthRequest="150"/> WidthRequest="150"/>
</StackLayout> </StackLayout>
<StackLayout <StackLayout
Grid.Row="1" Grid.Row="1"
Orientation="Horizontal"> Orientation="Horizontal">
<Label
Text="{x:Static resources:AppResources.StrNbStacksInGame}"
TextColor="{DynamicResource WhiteColor}"
FontSize="16"
VerticalTextAlignment="Center"
HorizontalTextAlignment="Center"/>
<Label <Label
x:Name="nbstacks" Text="{x:Static resources:AppResources.StrNbStacksInGame}"
TextColor="{DynamicResource WhiteColor}" TextColor="{DynamicResource WhiteColor}"
FontSize="16" FontSize="16"
VerticalTextAlignment="Center" VerticalTextAlignment="Center"
@ -137,24 +135,26 @@
VerticalOptions="Center" VerticalOptions="Center"
WidthRequest="150" WidthRequest="150"
Value="4"/> Value="4"/>
</StackLayout>
<StackLayout
Grid.Row="2"
Orientation="Horizontal">
<Label <Label
Text="{x:Static resources:AppResources.StrNbCards}" x:Name="nbstacks"
TextColor="{DynamicResource WhiteColor}" TextColor="{DynamicResource WhiteColor}"
FontSize="16" FontSize="16"
VerticalTextAlignment="Center" VerticalTextAlignment="Center"
HorizontalTextAlignment="Center"/> HorizontalTextAlignment="Center"/>
</StackLayout>
<StackLayout
Grid.Row="2"
Orientation="Horizontal">
<Label <Label
Text="{x:Static resources:AppResources.StrNbCards}"
TextColor="{DynamicResource WhiteColor}" TextColor="{DynamicResource WhiteColor}"
FontSize="16" FontSize="16"
x:Name="nbCard"
VerticalTextAlignment="Center" VerticalTextAlignment="Center"
HorizontalTextAlignment="Center"/> HorizontalTextAlignment="Center"/>
<Slider <Slider
x:Name="SelectNbCard" x:Name="SelectNbCard"
Maximum="100" Maximum="100"
@ -165,6 +165,14 @@
VerticalOptions="Center" VerticalOptions="Center"
WidthRequest="150" WidthRequest="150"
Value="100"/> Value="100"/>
<Label
TextColor="{DynamicResource WhiteColor}"
FontSize="16"
x:Name="nbCard"
VerticalTextAlignment="Center"
HorizontalTextAlignment="Center"/>
</StackLayout> </StackLayout>
</Grid> </Grid>
@ -189,7 +197,7 @@
Placeholder="Pseudo" Placeholder="Pseudo"
HorizontalOptions="Center" HorizontalOptions="Center"
MinimumWidthRequest="50" MinimumWidthRequest="50"
WidthRequest="150" WidthRequest="200"
MaxLength="18" MaxLength="18"
x:Name="FirstEntry" x:Name="FirstEntry"
IsTextPredictionEnabled="False"/> IsTextPredictionEnabled="False"/>

@ -9,10 +9,7 @@ namespace TheGameExtreme.view
public partial class GamePreparationPage : ContentPage public partial class GamePreparationPage : ContentPage
{ {
public List<string> listGameMode = new List<string> { AppResources.TypeValueWhole, AppResources.TypeValueRelative, AppResources.TypeValueTenth, AppResources.TypeValueHundredth, AppResources.TypeValueThousandthFract, AppResources.TypeValuefractionated }; public List<string> listGameMode = new List<string> { AppResources.TypeValueWhole, AppResources.TypeValueRelative, AppResources.TypeValueTenthFract, AppResources.TypeValueHundredthFract, AppResources.TypeValueThousandthFract, AppResources.TypeValuefractionated, AppResources.TypeValueTenth, AppResources.TypeValueHundredth };
//public List<int> listNbStack = new List<int> { 4, 6, 8 };
public List<int> listNbCard = new List<int> { 100, 80, 60, 40 };
public GamePreparationPage() public GamePreparationPage()
{ {

Binary file not shown.

Binary file not shown.
Loading…
Cancel
Save