blob: 4fd7fcc4d9278b4293662ef64d25a075cff59b73 [file] [log] [blame]
genrule(
name = 'gen_aar',
srcs = [
'gen_aar.sh',
],
bash = './gen_aar.sh $TMP $OUT',
out = 'the.aar',
)
android_prebuilt_aar(
name = 'aar',
aar = ':gen_aar',
)
android_library(
name = 'lib',
srcs = [ 'ExampleActivity.java' ],
deps = [ ':aar' ],
)
keystore(
name = 'debug',
store = 'debug.keystore',
properties = 'debug.keystore.properties',
visibility = ['PUBLIC'],
)
android_binary(
name = 'app',
manifest = 'AndroidManifest.xml',
target = 'Google Inc.:Google APIs:19',
keystore = ':debug',
package_type = 'DEBUG',
deps = [
':lib',
],
)
project_config(
src_target = ':app',
)