Our application should be built along with Android build and moved to the system partition.
But we were using hidden api and so we added the variable LOCAL_PRIVATE_PLATFORM_APIS := true
In the current Android 11, we removed all the hidden api from our app and are trying to move our app to the /product partition .In the Android.mk file ,we added these changes
LOCAL_PRODUCT_MODULE := true
LOCAL_SDK_VERSION := current
My question is about two possible values of the variable
system_current
current
Can anyone explain to me what the difference between system_current
and current
is?