mirror of
				https://github.com/Nioux/AideDeJeu.git
				synced 2025-10-31 15:36:07 +00:00 
			
		
		
		
	Haches & Dés
This commit is contained in:
		
							parent
							
								
									121e5e9e98
								
							
						
					
					
						commit
						ce5199dffe
					
				
					 5 changed files with 6 additions and 6 deletions
				
			
		|  | @ -10,7 +10,7 @@ using Android.OS; | ||||||
| namespace AideDeJeu.Droid | namespace AideDeJeu.Droid | ||||||
| { | { | ||||||
|     //[Activity(Label = "Aide de Jeu", Icon = "@drawable/black_book", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] |     //[Activity(Label = "Aide de Jeu", Icon = "@drawable/black_book", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] | ||||||
|     [Activity(Label = "Aide de Jeu", Icon = "@drawable/ic_launcher", Theme = "@style/MyTheme.Splash", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] |     [Activity(Label = "Haches & Dés", Icon = "@drawable/ic_launcher", Theme = "@style/MyTheme.Splash", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] | ||||||
|     public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity |     public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity | ||||||
|     { |     { | ||||||
|         protected override void OnCreate(Bundle bundle) |         protected override void OnCreate(Bundle bundle) | ||||||
|  |  | ||||||
|  | @ -2,5 +2,5 @@ | ||||||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="23" android:versionName="1.23" package="com.nioux.aidedejeu" android:installLocation="preferExternal"> | <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="23" android:versionName="1.23" package="com.nioux.aidedejeu" android:installLocation="preferExternal"> | ||||||
| 	<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="27" /> | 	<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="27" /> | ||||||
| 	<uses-permission android:name="android.permission.INTERNET" /> | 	<uses-permission android:name="android.permission.INTERNET" /> | ||||||
| 	<application android:label="Aide de Jeu" android:icon="@drawable/ic_launcher"></application> | 	<application android:label="Haches & Dés" android:icon="@drawable/ic_launcher"></application> | ||||||
| </manifest> | </manifest> | ||||||
|  | @ -3,7 +3,7 @@ | ||||||
|   <Identity Name="7385YanManiez.AidedeJeu" Publisher="CN=2C78A91E-528B-4FF0-A4BE-FD7F7EBABB44" Version="1.23.0.0" /> |   <Identity Name="7385YanManiez.AidedeJeu" Publisher="CN=2C78A91E-528B-4FF0-A4BE-FD7F7EBABB44" Version="1.23.0.0" /> | ||||||
|   <mp:PhoneIdentity PhoneProductId="7b75e00f-ae8d-472e-9d0f-cbfe5e44017c" PhonePublisherId="00000000-0000-0000-0000-000000000000" /> |   <mp:PhoneIdentity PhoneProductId="7b75e00f-ae8d-472e-9d0f-cbfe5e44017c" PhonePublisherId="00000000-0000-0000-0000-000000000000" /> | ||||||
|   <Properties> |   <Properties> | ||||||
|     <DisplayName>Aide de Jeu</DisplayName> |     <DisplayName>Haches & Dés</DisplayName> | ||||||
|     <PublisherDisplayName>Yan Maniez</PublisherDisplayName> |     <PublisherDisplayName>Yan Maniez</PublisherDisplayName> | ||||||
|     <Logo>Assets\StoreLogo.png</Logo> |     <Logo>Assets\StoreLogo.png</Logo> | ||||||
|   </Properties> |   </Properties> | ||||||
|  | @ -15,7 +15,7 @@ | ||||||
|   </Resources> |   </Resources> | ||||||
|   <Applications> |   <Applications> | ||||||
|     <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="AideDeJeu.UWP.App"> |     <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="AideDeJeu.UWP.App"> | ||||||
|       <uap:VisualElements DisplayName="Aide de Jeu" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Aide de Jeu" BackgroundColor="transparent"> |       <uap:VisualElements DisplayName="Haches & Dés" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Haches & Dés" BackgroundColor="transparent"> | ||||||
|         <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"> |         <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"> | ||||||
|         </uap:DefaultTile> |         </uap:DefaultTile> | ||||||
|         <uap:SplashScreen Image="Assets\SplashScreen.png" /> |         <uap:SplashScreen Image="Assets\SplashScreen.png" /> | ||||||
|  |  | ||||||
|  | @ -16,7 +16,7 @@ namespace AideDeJeu | ||||||
| 
 | 
 | ||||||
|             DependencyService.Register<MainViewModel>(); |             DependencyService.Register<MainViewModel>(); | ||||||
|             var vm = DependencyService.Get<MainViewModel>(); |             var vm = DependencyService.Get<MainViewModel>(); | ||||||
|             var mainPage = new ItemDetailPage(new ItemDetailViewModel(new HomeItem()) { Title = "Aide de Jeu" }); |             var mainPage = new ItemDetailPage(new ItemDetailViewModel(new HomeItem()) { Title = "Haches & Dés" }); | ||||||
|             var titlered = (Color)Resources["titlered"]; |             var titlered = (Color)Resources["titlered"]; | ||||||
|             var bgtan = (Color)Resources["bgtan"]; |             var bgtan = (Color)Resources["bgtan"]; | ||||||
|             var navigationPage = new MainNavigationPage(mainPage) { BarBackgroundColor = titlered, BarTextColor = bgtan }; |             var navigationPage = new MainNavigationPage(mainPage) { BarBackgroundColor = titlered, BarTextColor = bgtan }; | ||||||
|  |  | ||||||
|  | @ -26,7 +26,7 @@ | ||||||
|         </StackLayout> |         </StackLayout> | ||||||
|         <StackLayout Grid.Column="1" Grid.Row="0" BackgroundColor="{StaticResource titlered}" VerticalOptions="FillAndExpand" HorizontalOptions="Fill"> |         <StackLayout Grid.Column="1" Grid.Row="0" BackgroundColor="{StaticResource titlered}" VerticalOptions="FillAndExpand" HorizontalOptions="Fill"> | ||||||
|             <StackLayout BackgroundColor="{StaticResource titlered}" Padding="20,20,20,20" Orientation="Vertical" HorizontalOptions="Center" VerticalOptions="Center"> |             <StackLayout BackgroundColor="{StaticResource titlered}" Padding="20,20,20,20" Orientation="Vertical" HorizontalOptions="Center" VerticalOptions="Center"> | ||||||
|                 <Label Text="Aide de Jeu " FontSize="32" FontAttributes="Bold" TextColor="{StaticResource bgtan}" HorizontalOptions="Center"/> |                 <Label Text="Haches & Dés " FontSize="32" FontAttributes="Bold" TextColor="{StaticResource bgtan}" HorizontalOptions="Center"/> | ||||||
|                 <Label Text="{Binding Version, StringFormat='Version {0}'}" TextColor="{StaticResource bgtan}" HorizontalOptions="Center"/> |                 <Label Text="{Binding Version, StringFormat='Version {0}'}" TextColor="{StaticResource bgtan}" HorizontalOptions="Center"/> | ||||||
|             </StackLayout> |             </StackLayout> | ||||||
|         </StackLayout> |         </StackLayout> | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Yan Maniez
						Yan Maniez