Skip to content

Commit

Permalink
Merge pull request #12 from fiskaltrust/user/tsc/extract-libs-in-apk
Browse files Browse the repository at this point in the history
Include extractNativeLibs, update packages
  • Loading branch information
TSchmiedlechner committed Oct 22, 2020
2 parents 9939752 + e5c4f32 commit 3c63fb3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,15 @@ private static Notification GetNotification(LauncherState state, string contentT

private static void CreateNotificationChannel()
{
var channel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "fiskaltrust Middleware", NotificationImportance.Default)
if (Build.VERSION.SdkInt >= BuildVersionCodes.O)
{
Description = "The fiskaltrust Middleware"
};
var manager = (NotificationManager)Application.Context.GetSystemService(NotificationService);
manager.CreateNotificationChannel(channel);
var channel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "fiskaltrust Middleware", NotificationImportance.Default)
{
Description = "The fiskaltrust Middleware"
};
var manager = (NotificationManager)Application.Context.GetSystemService(NotificationService);
manager.CreateNotificationChannel(channel);
}
}

private static bool IsRunning(Type type)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="eu.fiskaltrust.androidlauncher" android:installLocation="auto">
<uses-sdk android:minSdkVersion="24" android:targetSdkVersion="29" />
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"></application>
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme" android:extractNativeLibs="true"></application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.INTERNET" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
<AndroidLinkMode>None</AndroidLinkMode>
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk>
<LangVersion>8.0</LangVersion>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down Expand Up @@ -131,7 +131,7 @@
<Version>15.0.6</Version>
</PackageReference>
<PackageReference Include="fiskaltrust.Exports.DSFinVK">
<Version>1.0.0</Version>
<Version>1.0.1</Version>
</PackageReference>
<PackageReference Include="fiskaltrust.interface">
<Version>1.3.1</Version>
Expand All @@ -140,7 +140,7 @@
<Version>1.3.3</Version>
</PackageReference>
<PackageReference Include="fiskaltrust.Middleware.Helper.Helipad">
<Version>1.3.2</Version>
<Version>1.3.8</Version>
</PackageReference>
<PackageReference Include="fiskaltrust.Middleware.Interface.Client.Grpc">
<Version>1.3.3</Version>
Expand All @@ -152,10 +152,10 @@
<Version>1.3.6-rc1</Version>
</PackageReference>
<PackageReference Include="fiskaltrust.Middleware.SCU.DE.Swissbit">
<Version>1.3.9</Version>
<Version>1.3.10</Version>
</PackageReference>
<PackageReference Include="fiskaltrust.Middleware.SCU.DE.SwissbitAndroid">
<Version>1.3.9-rc1</Version>
<Version>1.3.10</Version>
</PackageReference>
<PackageReference Include="Grpc.Core">
<Version>2.31.0</Version>
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.3.9-rc4",
"version": "1.3.9-rc5",
"releaseBranches": [
"^refs/heads/master$",
"^refs/heads/release/\\d+(?:\\.\\d+)*(?:-.*)?$",
Expand Down

0 comments on commit 3c63fb3

Please sign in to comment.