Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Modifying SDK API in AOSP

I am trying to modify FingerprintGestureController API in AOSP (master branch) to return boolean rather than void but I am keep getting error in building the project even after recompiling the SDK.

Error is:

FAILED: out/target/common/obj/PACKAGING/checkpublicapi-last-timestamp
/bin/bash -c "(( out/host/linux-x86/bin/apicheck -JXmx1024m -J\"classpath /usr/lib/jvm/java-8-openjdk-amd64/bin/../lib/tools.jar:out/host/linux-x86/framework/doclava.jar:out/host/linux-x86/framework/jsilver.jar\"  -hide 2 -hide 3 -hide 4 -hide 5 -hide 6 -hide 24 -hide 25 -hide 26 -hide 27 -error 7 -error 8 -error 9 -error 10 -error 11 -error 12 -error 13 -error 14 -error 15 -error 16 -error 17 -error 18   prebuilts/sdk/api/26.txt  out/target/common/obj/PACKAGING/public_api.txt  frameworks/base/api/removed.txt  out/target/common/obj/PACKAGING/removed.txt || (  cat build/core/apicheck_msg_last.txt ; exit 38 ) ) ) && (mkdir -p out/target/common/obj/PACKAGING/ ) && (touch out/target/common/obj/PACKAGING/checkpublicapi-last-timestamp )"
out/target/common/obj/PACKAGING/public_api.txt:2874: error 16: Method android.accessibilityservice.FingerprintGestureController.FingerprintGestureCallback.onGestureDetected(int) has changed return type from Primitive?: true TypeVariable?: false Wildcard?: false Dimension:  QualifedTypeName: void to Primitive?: true TypeVariable?: false Wildcard?: false Dimension:  QualifedTypeName: boolean

******************************
You have tried to change the API from what has been previously released in
an SDK.  Please fix the errors listed above.
******************************

Steps I followed to compile are:

lunch sdk-eng
make update-api   //Success
make sdk         //Success
lunch 1
make -j10      //Errors out here

Can someone please guide how I can change the android's released SDK API in source code and compile android.

like image 794
user531069 Avatar asked Sep 22 '17 05:09

user531069


1 Answers

You need to make sure that the following files have been updated with your method signature changes:

/frameworks/base/api/current.txt
/frameworks/base/api/system-current.txt
/frameworks/base/api/test-current.txt
like image 50
David Lev Avatar answered Oct 18 '22 17:10

David Lev