Skip to content

Commit b6fa7e8

Browse files
committed
Converted project to Buck structure
Can now be built using buck build experimental [email protected] Review URL: https://de-novo-rietveld.appspot.com/40001
1 parent e22deb6 commit b6fa7e8

File tree

27 files changed

+240
-3
lines changed

27 files changed

+240
-3
lines changed

.buckconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[alias]
2+
experimental = //apps/experimental:experimental
3+
[java]
4+
src_roots = /experimental/src
5+
[project]
6+
# IntelliJ requires that every Android module have an
7+
# AndroidManifest.xml file associated with it. In practice,
8+
# most of this is unnecessary boilerplate, so we create one
9+
# "shared" AndroidManifest.xml file that can be used as a default.
10+
default_android_manifest = //res/AndroidManifest.xml

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
bin/
33
gen/
44

5+
#Vim swap files
6+
*.swp
7+
58
#Built APK
69
*.apk
710
*.ap
@@ -12,3 +15,12 @@ gen/
1215
.classpath
1316
.project
1417
.settings/
18+
19+
#Eclipse/Eclim(d) related
20+
.metadata
21+
eclimd.log
22+
23+
#Buck related files
24+
/buck-out/
25+
local.properties
26+
.buckd

apps/experimental/AndroidManifest.xml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="org.denovogroup.experimental"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-permission android:name="android.permission.INTERNET" />
8+
<uses-sdk
9+
android:minSdkVersion="8"
10+
android:targetSdkVersion="18" />
11+
12+
<application
13+
android:allowBackup="true"
14+
android:icon="@drawable/ic_launcher"
15+
android:label="@string/app_name"
16+
android:theme="@style/AppTheme" >
17+
<service android:name=".MessageSendIntentService"
18+
android:enabled="true" />
19+
<service android:name=".MessageReceiveService"
20+
android:enabled="true" />
21+
<activity
22+
android:name="org.denovogroup.experimental.MainActivity"
23+
android:label="@string/app_name" >
24+
<intent-filter>
25+
<action android:name="android.intent.action.MAIN" />
26+
27+
<category android:name="android.intent.category.LAUNCHER" />
28+
</intent-filter>
29+
</activity>
30+
</application>
31+
32+
</manifest>

apps/experimental/BUCK

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
android_binary(
2+
name = 'experimental',
3+
manifest = 'AndroidManifest.xml',
4+
target = 'Google Inc.:Google APIs:18',
5+
keystore = ':debug_keystore',
6+
deps = [
7+
'//java/org/denovogroup/experimental:experimental',
8+
'//res/org/denovogroup/experimental:res',
9+
],
10+
)
11+
12+
keystore(
13+
name = 'debug_keystore',
14+
store = 'debug.keystore',
15+
properties = 'debug.keystore.properties',
16+
)
17+
18+
project_config(
19+
src_target = ':experimental',
20+
)

apps/experimental/debug.keystore

2.19 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
key.alias=my_alias
2+
key.store.password=android
3+
key.alias.password=android
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
android_library(
2+
name = 'experimental',
3+
srcs = glob(['*.java']),
4+
visibility = [ 'PUBLIC' ],
5+
deps = [
6+
'//libs:android-support-v4',
7+
'//res/org/denovogroup/experimental:res',
8+
],
9+
)
10+
11+
project_config(
12+
src_target = ':experimental',
13+
)

experimental/src/org/denovogroup/rangzen/MainActivity.java java/org/denovogroup/experimental/MainActivity.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2929
* POSSIBILITY OF SUCH DAMAGE.
3030
*/
31-
package org.denovogroup.rangzen;
31+
package org.denovogroup.experimental;
3232

3333
import android.support.v4.content.LocalBroadcastManager;
3434
import android.content.BroadcastReceiver;
@@ -45,6 +45,8 @@
4545

4646
import org.json.JSONObject;
4747

48+
import org.denovogroup.R;
49+
4850
/**
4951
* Main UI activity for experimental Rangzen app. Interfaces with user
5052
* permitting them to send/receive messages, manage friends, etc.

experimental/src/org/denovogroup/rangzen/MessageReceiveService.java java/org/denovogroup/experimental/MessageReceiveService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2929
* POSSIBILITY OF SUCH DAMAGE.
3030
*/
31-
package org.denovogroup.rangzen;
31+
package org.denovogroup.experimental;
3232

3333
import android.app.Service;
3434
import android.content.Intent;

experimental/src/org/denovogroup/rangzen/MessageSendIntentService.java java/org/denovogroup/experimental/MessageSendIntentService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2929
* POSSIBILITY OF SUCH DAMAGE.
3030
*/
31-
package org.denovogroup.rangzen;
31+
package org.denovogroup.experimental;
3232

3333
import android.app.IntentService;
3434
import android.content.Intent;

libs/BUCK

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
prebuilt_jar(
2+
name = 'android-support-v4',
3+
binary_jar = 'android-support-v4.jar',
4+
visibility = [ 'PUBLIC' ],
5+
)

libs/android-support-v4.jar

607 KB
Binary file not shown.

res/AndroidManifest.xml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This is the default AndroidManifest.xml used by Android library projects in
4+
IntelliJ, as such projects need only the package attribute in order to
5+
decide which Java package to use for the generated R.java file.
6+
7+
Because we use "com.facebook" as the package for all of our R.java files,
8+
we can share the same AndroidManifest.xml for all of our our library projects.
9+
This helps keep the /java/ directory clear of cruft.
10+
11+
There is a task filed to make Buck more flexible in terms of how we generate
12+
R.java files:
13+
https://our.intern.facebook.com/intern/tasks/?t=1820834
14+
-->
15+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example" />

res/org/denovogroup/experimental/BUCK

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
android_resource(
2+
name = 'res',
3+
res = 'res',
4+
package = 'org.denovogroup',
5+
visibility = [ 'PUBLIC' ],
6+
)
7+
Loading
Loading
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools"
4+
android:layout_width="match_parent"
5+
android:layout_height="match_parent"
6+
android:orientation="vertical" >
7+
<LinearLayout
8+
android:layout_width="match_parent"
9+
android:layout_height="wrap_content"
10+
android:orientation="horizontal" >
11+
<EditText android:id="@+id/edit_message"
12+
android:layout_width="0dp"
13+
android:layout_height="wrap_content"
14+
android:layout_weight="1"
15+
android:hint="@string/edit_message" />
16+
<Button android:layout_width="wrap_content"
17+
android:layout_height="wrap_content"
18+
android:text="@string/button_send"
19+
android:onClick="sendMessage" />
20+
</LinearLayout>
21+
<LinearLayout
22+
android:layout_width="match_parent"
23+
android:layout_height="match_parent"
24+
android:orientation="horizontal" >
25+
<TextView android:id="@+id/display_message"
26+
android:layout_width="wrap_content"
27+
android:layout_height="wrap_content"
28+
android:hint="@string/display_message" />
29+
</LinearLayout>
30+
</LinearLayout>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
2+
3+
<item
4+
android:id="@+id/action_settings"
5+
android:orderInCategory="100"
6+
android:showAsAction="never"
7+
android:title="@string/action_settings"/>
8+
9+
</menu>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<resources>
2+
3+
<!--
4+
Customize dimensions originally defined in res/values/dimens.xml (such as
5+
screen margins) for sw600dp devices (e.g. 7" tablets) here.
6+
-->
7+
8+
</resources>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<resources>
2+
3+
<!--
4+
Customize dimensions originally defined in res/values/dimens.xml (such as
5+
screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here.
6+
-->
7+
<dimen name="activity_horizontal_margin">128dp</dimen>
8+
9+
</resources>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<resources>
2+
3+
<!--
4+
Base application theme for API 11+. This theme completely replaces
5+
AppBaseTheme from res/values/styles.xml on API 11+ devices.
6+
-->
7+
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
8+
<!-- API 11 theme customizations can go here. -->
9+
</style>
10+
11+
</resources>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<resources>
2+
3+
<!--
4+
Base application theme for API 14+. This theme completely replaces
5+
AppBaseTheme from BOTH res/values/styles.xml and
6+
res/values-v11/styles.xml on API 14+ devices.
7+
-->
8+
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">
9+
<!-- API 14 theme customizations can go here. -->
10+
</style>
11+
12+
</resources>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<resources>
2+
3+
<!-- Default screen margins, per the Android Design guidelines. -->
4+
<dimen name="activity_horizontal_margin">16dp</dimen>
5+
<dimen name="activity_vertical_margin">16dp</dimen>
6+
7+
</resources>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
4+
<string name="app_name">Rangzen</string>
5+
<string name="action_settings">Settings</string>
6+
<string name="hello_world">Hello world!</string>
7+
<string name="edit_message">Enter a message</string>
8+
<string name="button_send">Send</string>
9+
<string name="title_activity_main">Rangzen 0.0.0.1</string>
10+
<string name="display_message">(no message)</string>
11+
12+
</resources>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<resources>
2+
3+
<!--
4+
Base application theme, dependent on API level. This theme is replaced
5+
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
6+
-->
7+
<style name="AppBaseTheme" parent="android:Theme.Light">
8+
<!--
9+
Theme customizations available in newer API levels can go in
10+
res/values-vXX/styles.xml, while customizations related to
11+
backward-compatibility can go here.
12+
-->
13+
</style>
14+
15+
<!-- Application theme. -->
16+
<style name="AppTheme" parent="AppBaseTheme">
17+
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
18+
</style>
19+
20+
</resources>

0 commit comments

Comments
 (0)