mirror of
https://github.com/zoriya/Opus.git
synced 2026-06-02 14:15:11 +00:00
Updating the updater.
This commit is contained in:
@@ -80,7 +80,7 @@ namespace MusicApp
|
||||
private Drawable crossToPlay;
|
||||
|
||||
private const int RequestCode = 8539;
|
||||
private const string versionURI = "";
|
||||
private const string versionURI = "https://raw.githubusercontent.com/AnonymusRaccoon/MusicApp/master/MusicApp/Resources/values/Version.txt";
|
||||
|
||||
private const string clientID = "112086459272-8m4do6aehtdg4a7nffd0a84jk94c64e8.apps.googleusercontent.com";
|
||||
public static YouTubeService youtubeService;
|
||||
@@ -1304,7 +1304,7 @@ namespace MusicApp
|
||||
return (int) (px * scale + 0.5f);
|
||||
}
|
||||
|
||||
public static void CheckForUpdate()
|
||||
public async static void CheckForUpdate()
|
||||
{
|
||||
string VersionAsset;
|
||||
AssetManager assets = Application.Context.Assets;
|
||||
@@ -1313,15 +1313,23 @@ namespace MusicApp
|
||||
VersionAsset = sr.ReadToEnd();
|
||||
}
|
||||
|
||||
Console.WriteLine("&VersionAsset = " + VersionAsset);
|
||||
string versionID = VersionAsset.Substring(9, 3);
|
||||
Console.WriteLine("&VersionID = " + versionID);
|
||||
int version = int.Parse(versionID.Remove(1, 1));
|
||||
Console.WriteLine("&Version: " + version);
|
||||
|
||||
int gitVersion;
|
||||
string downloadPath;
|
||||
|
||||
using(WebClient client = new WebClient())
|
||||
{
|
||||
client.DownloadStringAsync(versionURI);
|
||||
string GitVersion = await client.DownloadStringTaskAsync(new System.Uri(versionURI));
|
||||
string gitVersionID = VersionAsset.Substring(9, 3);
|
||||
gitVersion = int.Parse(versionID.Remove(1, 1));
|
||||
downloadPath = VersionAsset.Substring(18);
|
||||
}
|
||||
|
||||
if(gitVersion > version)
|
||||
{
|
||||
Console.WriteLine("&Should update the app");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -316,9 +316,7 @@
|
||||
<SubType>Designer</SubType>
|
||||
</AndroidResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Assets\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<ItemGroup>
|
||||
<AndroidResource Include="Resources\drawable\PlaylistPlayIcon.png" />
|
||||
</ItemGroup>
|
||||
@@ -642,7 +640,7 @@
|
||||
<AndroidResource Include="Resources\layout\HomeTopic.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AndroidAsset Include="Resources\values\Version.txt" />
|
||||
<AndroidAsset Include="Assets\Version.txt" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.4.0.2\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.4.0.2\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets')" />
|
||||
|
||||
Reference in New Issue
Block a user