├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── README.md └── Xamarin ├── Xamarin.sln └── Xamarin ├── Liblinphone ├── Additions │ └── AboutAdditions.txt ├── Jars │ └── AboutJars.txt ├── Liblinphone.csproj ├── Properties │ └── AssemblyInfo.cs └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── Xamarin.Android ├── Assets │ ├── AboutAssets.txt │ ├── linphonerc_default │ └── linphonerc_factory ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── layout │ │ ├── Tabbar.axml │ │ └── Toolbar.axml │ ├── mipmap-anydpi-v26 │ │ ├── icon.xml │ │ └── icon_round.xml │ ├── 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 │ └── values │ │ ├── colors.xml │ │ └── styles.xml └── TutoXamarin.Android.csproj ├── Xamarin.iOS ├── AppDelegate.cs ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon1024.png │ │ ├── Icon120.png │ │ ├── Icon152.png │ │ ├── Icon167.png │ │ ├── Icon180.png │ │ ├── Icon20.png │ │ ├── Icon29.png │ │ ├── Icon40.png │ │ ├── Icon58.png │ │ ├── Icon60.png │ │ ├── Icon76.png │ │ ├── Icon80.png │ │ └── Icon87.png ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-76.png │ ├── Icon-76@2x.png │ ├── Icon-Small-40.png │ ├── Icon-Small-40@2x.png │ ├── Icon-Small-40@3x.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon-Small@3x.png │ └── LaunchScreen.storyboard ├── TutoXamarin.iOS.csproj ├── iTunesArtwork └── iTunesArtwork@2x └── Xamarin ├── App.xaml ├── App.xaml.cs ├── LinphoneManager.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── TutoXamarin.projitems └── TutoXamarin.shproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/README.md -------------------------------------------------------------------------------- /Xamarin/Xamarin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin.sln -------------------------------------------------------------------------------- /Xamarin/Xamarin/Liblinphone/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Liblinphone/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Xamarin/Xamarin/Liblinphone/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Liblinphone/Jars/AboutJars.txt -------------------------------------------------------------------------------- /Xamarin/Xamarin/Liblinphone/Liblinphone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Liblinphone/Liblinphone.csproj -------------------------------------------------------------------------------- /Xamarin/Xamarin/Liblinphone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Liblinphone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xamarin/Xamarin/Liblinphone/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Liblinphone/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Xamarin/Xamarin/Liblinphone/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Liblinphone/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Xamarin/Xamarin/Liblinphone/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Liblinphone/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Assets/linphonerc_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Assets/linphonerc_default -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Assets/linphonerc_factory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Assets/linphonerc_factory -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/MainActivity.cs -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.Android/TutoXamarin.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.Android/TutoXamarin.Android.csproj -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Info.plist -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Main.cs -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/TutoXamarin.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/TutoXamarin.iOS.csproj -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/iTunesArtwork -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin/App.xaml -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin/App.xaml.cs -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin/LinphoneManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin/LinphoneManager.cs -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin/MainPage.xaml -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin/MainPage.xaml.cs -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin/TutoXamarin.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin/TutoXamarin.projitems -------------------------------------------------------------------------------- /Xamarin/Xamarin/Xamarin/TutoXamarin.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-xamarin/HEAD/Xamarin/Xamarin/Xamarin/TutoXamarin.shproj --------------------------------------------------------------------------------