Replace [your key] with your key ID
To obtain your key ID
gpg --list-secret-keys --keyid-format LONG
Which returns something like
gpgconf --kill gpg-agent |
class MyTestClass { | |
companion object { | |
init { | |
// things that may need to be setup before companion class member variables are instantiated | |
} | |
// variables you initialize for the class just once: | |
val someClassVar = initializer() | |
// variables you initialize for the class later in the @BeforeClass method: |
<?xml version="1.0" encoding="utf-8"?> | |
<!-- Add this as a debug manifest so the permissions won't be required by your production app --> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | |
<uses-permission android:name="android.permission.WAKE_LOCK" /> | |
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> | |
</manifest> |