diff --git a/AndroidYouTubeDownloader/AndroidManifest.xml b/AndroidYouTubeDownloader/AndroidManifest.xml index ec37b5e..820a58e 100644 --- a/AndroidYouTubeDownloader/AndroidManifest.xml +++ b/AndroidYouTubeDownloader/AndroidManifest.xml @@ -1,9 +1,9 @@ - + - + - - + + \ No newline at end of file diff --git a/AndroidYouTubeDownloader/AndroidYouTubeDownloader.csproj b/AndroidYouTubeDownloader/AndroidYouTubeDownloader.csproj index 0a39af7..a349689 100644 --- a/AndroidYouTubeDownloader/AndroidYouTubeDownloader.csproj +++ b/AndroidYouTubeDownloader/AndroidYouTubeDownloader.csproj @@ -1,6 +1,6 @@ - net7.0-android + net8.0-android 26 Exe disable @@ -28,17 +28,17 @@ - - - - - - - - - - - + + + + + + + + + + + diff --git a/CreateApk.ps1 b/CreateApk.ps1 index 61c9f74..e4b8285 100644 --- a/CreateApk.ps1 +++ b/CreateApk.ps1 @@ -39,7 +39,7 @@ Function Build { $signingKeyPass ) - dotnet publish -f:net6.0-android -c:Release /p:AndroidSigningKeyPass=$signingKeyPass /p:AndroidSigningStorePass=$signingKeyPass + dotnet publish -f:net8.0-android -c:Release /p:AndroidSigningKeyPass=$signingKeyPass /p:AndroidSigningStorePass=$signingKeyPass } Function CopyToLocalAppStore { diff --git a/build/Build.csproj b/build/Build.csproj index 064f3a4..4861f2f 100644 --- a/build/Build.csproj +++ b/build/Build.csproj @@ -1,10 +1,10 @@ Exe - net7.0 + net8.0 $(MSBuildProjectDirectory) - + \ No newline at end of file diff --git a/build/PublishTask.cs b/build/PublishTask.cs index 7e164f8..cfd0b0f 100644 --- a/build/PublishTask.cs +++ b/build/PublishTask.cs @@ -20,7 +20,7 @@ public override void Run(BuildContext context) context.Log.Information($"Deleted artifacts folder {context.ArtifactsDirectory}"); - DirectoryPath publishDirectory = context.RootDirectory.Combine(@".\AndroidYouTubeDownloader\bin\Release\net7.0-android\publish"); + DirectoryPath publishDirectory = context.RootDirectory.Combine(@".\AndroidYouTubeDownloader\bin\Release\net8.0-android\publish"); var appName = "AndroidYouTubeDownloader"; var package = context.GetApplicationId(); var architectures = new[] { "arm64-v8a", "armeabi-v7a", "x86_64" };