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
import java.io.BufferedOutputStream; | |
import java.io.BufferedReader; | |
import java.io.ByteArrayInputStream; | |
import java.io.EOFException; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.io.InputStream; |
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
---Java | |
//I used this on Android | |
//before you proceed, you need to ensure your private key is PKCS8 since that is what can be read natively in java. | |
//If your key begins with -----BEGIN RSA PRIVATE KEY-----, the it is ssleay and you need to convert it using the openssl command below | |
//openssl pkcs8 -topk8 -inform pem -in ssleay-private-key.key -outform pem -nocrypt -out pkcs8-private-key.pem | |
final private static String RSA_PRIVATE_KEY = | |
"-----BEGIN PRIVATE KEY-----\n" + | |
"MI...\n" + |
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
package com.whisppa.app.adapter; | |
import android.app.Activity; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.widget.TextView; | |
import com.crashlytics.android.Crashlytics; | |
import com.whisppa.app.BaseActivity; | |
import com.whisppa.app.R; |
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
@Override | |
public void onPrepared(MediaPlayer mediaPlayer) { | |
mIsPrepared = true; | |
isLoadingNew = false; | |
mLostFocus = false; | |
if (startFocus() == AudioManager.AUDIOFOCUS_REQUEST_GRANTED) { | |
initForeground(); |
NewerOlder