-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
110 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
Bitcoin.Curses/Bitcoin.Curses.Droid/Properties/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# This is Xamarin-specific (and enhanced) configuration. | ||
|
||
-dontobfuscate | ||
|
||
-keep class mono.MonoRuntimeProvider { *; <init>(...); } | ||
-keep class mono.MonoPackageManager { *; <init>(...); } | ||
-keep class mono.MonoPackageManager_Resources { *; <init>(...); } | ||
-keep class mono.android.** { *; <init>(...); } | ||
-keep class mono.java.** { *; <init>(...); } | ||
-keep class mono.javax.** { *; <init>(...); } | ||
-keep class opentk.platform.android.AndroidGameView { *; <init>(...); } | ||
-keep class opentk.GameViewBase { *; <init>(...); } | ||
-keep class opentk_1_0.platform.android.AndroidGameView { *; <init>(...); } | ||
-keep class opentk_1_0.GameViewBase { *; <init>(...); } | ||
|
||
-keep class android.runtime.** { <init>(***); } | ||
-keep class assembly_mono_android.android.runtime.** { <init>(***); } | ||
# hash for android.runtime and assembly_mono_android.android.runtime. | ||
-keep class md52ce486a14f4bcd95899665e9d932190b.** { *; <init>(...); } | ||
-keepclassmembers class md52ce486a14f4bcd95899665e9d932190b.** { *; <init>(...); } | ||
|
||
# Android's template misses fluent setters... | ||
-keepclassmembers class * extends android.view.View { | ||
*** set*(***); | ||
} | ||
|
||
# also misses those inflated custom layout stuff from xml... | ||
-keepclassmembers class * extends android.view.View { | ||
<init>(android.content.Context,android.util.AttributeSet); | ||
<init>(android.content.Context,android.util.AttributeSet,int); | ||
} | ||
|
||
-keep class com.google.android.gms.** { *; } | ||
-dontwarn com.google.android.gms.** | ||
-keep class com.microsoft.windowsazure.messaging.** { *; } | ||
-dontwarn com.microsoft.windowsazure.messaging.** | ||
-keep class com.google.firebase.** { *; } | ||
-dontwarn com.google.firebase.** | ||
-keep class android.support.v7.widget.** { *; } | ||
-dontwarn android.support.v7.widget.** | ||
-keep class android.support.v4.widget.Space { *; } | ||
-dontwarn android.support.v4.widget.Space |
14 changes: 14 additions & 0 deletions
14
Bitcoin.Curses/Bitcoin.Curses/Attributes/PreserveAttribute.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Android.Runtime | ||
{ | ||
public sealed class PreserveAttribute : System.Attribute | ||
{ | ||
public bool AllMembers; | ||
public bool Conditional; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters