├── src ├── exercise1 │ ├── final │ │ ├── People │ │ │ ├── AssemblyInfo.cs │ │ │ ├── App.xaml │ │ │ ├── Models │ │ │ │ └── Person.cs │ │ │ ├── FileAccessHelper.cs │ │ │ ├── People.csproj │ │ │ ├── App.xaml.cs │ │ │ ├── MainPage.xaml.cs │ │ │ ├── PersonRepository.cs │ │ │ └── MainPage.xaml │ │ ├── People.iOS │ │ │ ├── Resources │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Icon120.png │ │ │ │ │ ├── Icon152.png │ │ │ │ │ ├── Icon167.png │ │ │ │ │ ├── Icon180.png │ │ │ │ │ ├── Icon20.png │ │ │ │ │ ├── Icon29.png │ │ │ │ │ ├── Icon40.png │ │ │ │ │ ├── Icon58.png │ │ │ │ │ ├── Icon60.png │ │ │ │ │ ├── Icon76.png │ │ │ │ │ ├── Icon80.png │ │ │ │ │ ├── Icon87.png │ │ │ │ │ ├── Icon1024.png │ │ │ │ │ └── Contents.json │ │ │ ├── Entitlements.plist │ │ │ ├── Main.cs │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── People.iOS.csproj │ │ ├── People.Android │ │ │ ├── Resources │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── icon.xml │ │ │ │ │ └── icon_round.xml │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── layout │ │ │ │ │ ├── Main.axml │ │ │ │ │ ├── Toolbar.axml │ │ │ │ │ └── Tabbar.axml │ │ │ │ └── AboutResources.txt │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Assets │ │ │ │ └── AboutAssets.txt │ │ │ ├── MainActivity.cs │ │ │ └── People.Android.csproj │ │ └── People.sln │ ├── start │ │ ├── People │ │ │ ├── AssemblyInfo.cs │ │ │ ├── App.xaml │ │ │ ├── FileAccessHelper.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── People.csproj │ │ │ └── App.xaml.cs │ │ ├── People.iOS │ │ │ ├── Resources │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Icon120.png │ │ │ │ │ ├── Icon152.png │ │ │ │ │ ├── Icon167.png │ │ │ │ │ ├── Icon180.png │ │ │ │ │ ├── Icon20.png │ │ │ │ │ ├── Icon29.png │ │ │ │ │ ├── Icon40.png │ │ │ │ │ ├── Icon58.png │ │ │ │ │ ├── Icon60.png │ │ │ │ │ ├── Icon76.png │ │ │ │ │ ├── Icon80.png │ │ │ │ │ ├── Icon87.png │ │ │ │ │ ├── Icon1024.png │ │ │ │ │ └── Contents.json │ │ │ ├── Entitlements.plist │ │ │ ├── Main.cs │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── People.iOS.csproj │ │ ├── People.Android │ │ │ ├── Resources │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── icon.xml │ │ │ │ │ └── icon_round.xml │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── layout │ │ │ │ │ ├── Main.axml │ │ │ │ │ ├── Toolbar.axml │ │ │ │ │ └── Tabbar.axml │ │ │ │ └── AboutResources.txt │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Assets │ │ │ │ └── AboutAssets.txt │ │ │ ├── MainActivity.cs │ │ │ └── People.Android.csproj │ │ └── People.sln │ └── assets │ │ ├── MainPage.xaml.cs │ │ ├── PersonRepository.cs │ │ └── MainPage.xaml └── exercise2 │ └── final │ ├── People │ ├── AssemblyInfo.cs │ ├── App.xaml │ ├── Models │ │ └── Person.cs │ ├── FileAccessHelper.cs │ ├── People.csproj │ ├── App.xaml.cs │ ├── MainPage.xaml.cs │ ├── PersonRepository.cs │ └── MainPage.xaml │ ├── People.iOS │ ├── Resources │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ └── LaunchScreen.storyboard │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ ├── Icon87.png │ │ │ ├── Icon1024.png │ │ │ └── Contents.json │ ├── Entitlements.plist │ ├── Main.cs │ ├── AppDelegate.cs │ ├── Info.plist │ ├── Properties │ │ └── AssemblyInfo.cs │ └── People.iOS.csproj │ ├── People.Android │ ├── Resources │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ ├── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ ├── layout │ │ │ ├── Main.axml │ │ │ ├── Toolbar.axml │ │ │ └── Tabbar.axml │ │ └── AboutResources.txt │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ └── People.Android.csproj │ └── People.sln ├── LICENSE-CODE ├── README.md ├── .gitignore └── LICENSE /src/exercise1/final/People/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Forms.Xaml; 2 | 3 | [assembly: XamlCompilation(XamlCompilationOptions.Compile)] -------------------------------------------------------------------------------- /src/exercise1/start/People/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Forms.Xaml; 2 | 3 | [assembly: XamlCompilation(XamlCompilationOptions.Compile)] -------------------------------------------------------------------------------- /src/exercise2/final/People/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Forms.Xaml; 2 | 3 | [assembly: XamlCompilation(XamlCompilationOptions.Compile)] -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Resources/Default.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Resources/Default.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Resources/Default.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/final/People.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise1/start/People.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-xamarin-store-data-sqlite/HEAD/src/exercise2/final/People.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/exercise1/final/People.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/exercise1/start/People.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/exercise2/final/People.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/exercise1/final/People/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/exercise1/start/People/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/exercise2/final/People/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | #3F51B5 5 | #303F9F 6 | #FF4081 7 | 8 | -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | #3F51B5 5 | #303F9F 6 | #FF4081 7 | 8 | -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | #3F51B5 5 | #303F9F 6 | #FF4081 7 | 8 | -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/exercise1/final/People/Models/Person.cs: -------------------------------------------------------------------------------- 1 | using SQLite; 2 | 3 | namespace People.Models 4 | { 5 | [Table("people")] 6 | public class Person 7 | { 8 | [PrimaryKey, AutoIncrement] 9 | public int Id { get; set; } 10 | [MaxLength(250), Unique] 11 | public string Name { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/exercise2/final/People/Models/Person.cs: -------------------------------------------------------------------------------- 1 | using SQLite; 2 | 3 | namespace People.Models 4 | { 5 | [Table("people")] 6 | public class Person 7 | { 8 | [PrimaryKey, AutoIncrement] 9 | public int Id { get; set; } 10 | [MaxLength(250), Unique] 11 | public string Name { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/exercise1/final/People/FileAccessHelper.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Essentials; 2 | 3 | namespace People 4 | { 5 | public class FileAccessHelper 6 | { 7 | public static string GetLocalFilePath(string filename) 8 | { 9 | return System.IO.Path.Combine(FileSystem.AppDataDirectory, filename); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/exercise1/start/People/FileAccessHelper.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Essentials; 2 | 3 | namespace People 4 | { 5 | public class FileAccessHelper 6 | { 7 | public static string GetLocalFilePath(string filename) 8 | { 9 | return System.IO.Path.Combine(FileSystem.AppDataDirectory, filename); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/exercise2/final/People/FileAccessHelper.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Essentials; 2 | 3 | namespace People 4 | { 5 | public class FileAccessHelper 6 | { 7 | public static string GetLocalFilePath(string filename) 8 | { 9 | return System.IO.Path.Combine(FileSystem.AppDataDirectory, filename); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/exercise1/start/People.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/exercise2/final/People.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/exercise1/final/People.Android/Resources/layout/Main.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 |