Android.bp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. android_app {
  2. name: "OpenEUICC",
  3. static_libs: [
  4. // Dependencies that must be pulled from maven
  5. "asn1bean-prebuilt-jar",
  6. "zxing-core-prebuilt-jar",
  7. "zxing-android-embedded-prebuilt-aar",
  8. // Dependencies included with AOSP
  9. "androidx.appcompat_appcompat",
  10. "androidx.cardview_cardview",
  11. "androidx-constraintlayout_constraintlayout",
  12. "androidx.core_core-ktx",
  13. "androidx.lifecycle_lifecycle-runtime-ktx",
  14. "androidx.swiperefreshlayout_swiperefreshlayout",
  15. "com.google.android.material_material",
  16. "gson-prebuilt-jar",
  17. ],
  18. srcs: [
  19. // Main app
  20. "app/src/main/**/*.kt",
  21. // TruPhone LPAd library
  22. "libs/lpad-sm-dp-plus-connector/src/generated/**/*.java",
  23. "libs/lpad-sm-dp-plus-connector/src/main/**/*.java",
  24. "libs/lpad-sm-dp-plus-connector/src/main/**/*.kt",
  25. ],
  26. resource_dirs: [
  27. "app/src/main/res",
  28. ],
  29. manifest: "app/src/main/AndroidManifest.xml",
  30. privileged: true,
  31. platform_apis: true,
  32. system_ext_specific: true,
  33. }