You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
refactor source tree organization, switch to meson
This commit is contained in:
15
src/api-impl/android/location/Criteria.java
Normal file
15
src/api-impl/android/location/Criteria.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package android.location;
|
||||
|
||||
public class Criteria {
|
||||
public static final int NO_REQUIREMENT = 0;
|
||||
public static final int POWER_LOW = 1;
|
||||
public static final int POWER_MEDIUM = 2;
|
||||
public static final int POWER_HIGH = 3;
|
||||
public static final int ACCURACY_FINE = 1;
|
||||
public static final int ACCURACY_COARSE = 2;
|
||||
public static final int ACCURACY_LOW = 1;
|
||||
public static final int ACCURACY_MEDIUM = 2;
|
||||
public static final int ACCURACY_HIGH = 3;
|
||||
|
||||
public void setAccuracy(int accuracy) {}
|
||||
}
|
||||
5
src/api-impl/android/location/LocationListener.java
Normal file
5
src/api-impl/android/location/LocationListener.java
Normal file
@@ -0,0 +1,5 @@
|
||||
package android.location;
|
||||
|
||||
public interface LocationListener {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user