Move res files to be more gradle-esque

Summary: Resources don't usually live under the package name.  We want to gradle build this soon, so making the directory structure as traditional as possible is best.

Reviewed By: emilsjolander

Differential Revision: D4557978

fbshipit-source-id: 7f80599201fe007a895e52bc5141425f9a83eb51
This commit is contained in:
Robert Spencer
2017-02-14 03:05:32 -08:00
committed by Facebook Github Bot
parent f251648726
commit d24078be31
12 changed files with 10 additions and 22 deletions

View File

@@ -12,7 +12,7 @@ FBJNI_TARGET = '//lib/fb:fbjni'
APPCOMPAT_TARGET = '//lib/appcompat:appcompat'
ANDROID_SUPPORT_TARGET = '//lib/android-support:android-support'
ANDROID_SAMPLE_JAVA_TARGET = '//android/sample/java/com/facebook/samples/yoga:yoga'
ANDROID_SAMPLE_RES_TARGET = '//android/sample/res/com/facebook/samples/yoga:res'
ANDROID_SAMPLE_RES_TARGET = '//android/sample:res'
THIS_IS_FBOBJC = False

View File

@@ -17,6 +17,15 @@ android_binary(
],
)
android_resource(
name = 'res',
res = 'res',
package = 'com.facebook.samples.yoga',
visibility = [
'PUBLIC',
],
)
keystore(
name='debug_keystore',
store='debug.keystore',

View File

@@ -1,21 +0,0 @@
# Copyright (c) 2014-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree. An additional grant
# of patent rights can be found in the PATENTS file in the same directory.
include_defs('//YOGA_DEFS')
android_resource(
name = 'res',
res = 'res',
package = 'com.facebook.samples.yoga',
visibility = [
'PUBLIC',
],
)
project_config(
src_target = ':res'
)

View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB