refactor source tree organization, switch to meson

This commit is contained in:
Mis012
2022-10-02 23:06:56 +02:00
parent 2f785e2a59
commit 449090143e
296 changed files with 171615 additions and 69 deletions

View 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) {}
}

View File

@@ -0,0 +1,5 @@
package android.location;
public interface LocationListener {
}