Skip to content

Commit

Permalink
use armeabi instead of armeabi-v7
Browse files Browse the repository at this point in the history
  • Loading branch information
codeanticode committed Jul 17, 2015
1 parent c6a90aa commit 51b0409
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/processing/mode/android/AVD.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ public class AVD {
/** "android-7" or "Google Inc.:Google APIs:7" */
protected String target;

/** x86, x86_64 or armeabi-v7a **/
/** x86, x86_64 or armeabi **/
protected String abi;

protected VirtualDevice virtualDevice;

public static final String PREF_KEY_ABI = "android.sdk.abi";
public static final String[] ABI = {"armeabi-v7a", "x86", "x86_64"};
public static final String[] ABI = {"armeabi", "x86", "x86_64"};

/** Default virtual device used by Processing. */
static public AVD defaultAVD;
Expand Down

0 comments on commit 51b0409

Please sign in to comment.