Skip to content

Commit

Permalink
xamarin 2.1.0 release, support for android extension
Browse files Browse the repository at this point in the history
  • Loading branch information
edatkinvey committed Feb 25, 2015
1 parent 11024d3 commit de5e065
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
1 change: 0 additions & 1 deletion Kinvey-Xamarin-Android/Push/KinveyGCMService.cs
Expand Up @@ -49,7 +49,6 @@ protected override void OnHandleIntent(Intent intent)
else if (action.Equals(GoogleCloudMessaging.MessageTypeDeleted))
{
onDelete(intent.GetIntExtra("DELETED", 0));

}
else if (action.Equals("com.kinvey.xamarin.android.ERROR"))
{
Expand Down
2 changes: 1 addition & 1 deletion Kinvey-Xamarin/Core/KinveyHeaders.cs
Expand Up @@ -28,7 +28,7 @@ public class KinveyHeaders : List<HttpHeader>
/// <summary>
/// The version of the library.
/// </summary>
private static string version = "1.0.0";
private static string version = "1.2.0";

/// <summary>
/// The kinvey API version key.
Expand Down
25 changes: 13 additions & 12 deletions README.md
Expand Up @@ -7,15 +7,16 @@ This is a Public Class Library (PCL) for various supported Xamarin runtimes.
##Release Process

1. Ensure tests are passing
2. Set target to `Release`, and kick off a build.
3. Copy __Kinvey-Utils/obj/Release/Kinvey-Utils.dll__, __Kinvey-Xamarin/obj/Release/Kinvey-Xamarin.dll__, and __Restsharp.Portable/obj/Release/RestSharp.portable.dll__ into the __release/kinvey-xamarin-x.x__ directory
4. Zip up the __release/kinvey-xamarin-x.x.__ directory
5. Check everything into github, and tag a release.
6. Upload the zip to amazon
7. on windows, do a git pull
8. Ensure the project builds on windows
9. run `nuget pack Kinvey-Xamarin.csproj -IncludeReferencedProjects`
10. Edit the file `Kinvey-Xamarin.nuspec` to up the version number and changelog (this is an xml file)
11. run `nuget push Kinvey-Xamarin.nupkg`
12. pull the devcenter
13. modify the changelog and download.json, and deploy.
2. Update the version number in `Kinvey-Xamarin/core/KinveyHeaders.cs`
3. Set target to `Release`, and kick off a build.
4. Copy __Kinvey-Utils/obj/Release/Kinvey-Utils.dll__, __Kinvey-Xamarin/obj/Release/Kinvey-Xamarin.dll__, and __Restsharp.Portable/obj/Release/RestSharp.portable.dll__ into the __release/kinvey-xamarin-x.x__ directory
5. Zip up the __release/kinvey-xamarin-x.x.__ directory
6. Check everything into github, and tag a release.
7. Upload the zip to amazon
8. on windows, do a git pull
9. Ensure the project builds on windows
10. run `nuget pack Kinvey-Xamarin.csproj -IncludeReferencedProjects`
11. Edit the file `Kinvey-Xamarin.nuspec` to up the version number and changelog (this is an xml file)
12. run `nuget push Kinvey-Xamarin.nupkg`
13. pull the devcenter
14. modify the changelog and download.json, and deploy.

0 comments on commit de5e065

Please sign in to comment.