diff --git a/.buckconfig b/.buckconfig index eeca57a..78a9b9b 100644 --- a/.buckconfig +++ b/.buckconfig @@ -1,12 +1,6 @@ [alias] [java] src_roots = /java/ -[project] - # IntelliJ requires that every Android module have an - # AndroidManifest.xml file associated with it. In practice, - # most of this is unnecessary boilerplate, so we create one - # "shared" AndroidManifest.xml file that can be used as a default. - default_android_manifest = //res/AndroidManifest.xml [android] target = android-26 build_tools_version = 27.0.3 diff --git a/BUCK b/BUCK index 0bb31a0..2e2fc6c 100644 --- a/BUCK +++ b/BUCK @@ -14,10 +14,8 @@ export_file( out = "nativeloader.jar", ) -android_aar( +export_file( name = "annotation", - manifest_skeleton = "AndroidManifestSkeleton.xml", - deps = [ - "//java/com/facebook/soloader:annotation", - ], + src = "//java/com/facebook/soloader:annotation", + out = "annotation.jar", )