Skip to content

Commit

Permalink
tomato: Fix Proximity Calibration
Browse files Browse the repository at this point in the history
* Use System.loadLibrary() instead of System.load()

Change-Id: I3952635652759a709d864e2b7946d90da0719466
  • Loading branch information
shrukul authored and h2o64 committed Feb 25, 2017
1 parent cbcf492 commit e342867
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class ProximityCalibrateActivity extends Activity {
* Setup native bits
*/
static {
System.load("libjni_proximityCalibrate.so");
System.loadLibrary("jni_proximityCalibrate");
}

private static native boolean native_calibrateProximity(int[] parameters);
Expand Down

0 comments on commit e342867

Please sign in to comment.