Skip to content

Commit

Permalink
export string and add apk
Browse files Browse the repository at this point in the history
  • Loading branch information
jceStudet committed Nov 22, 2014
1 parent 819fb94 commit 9649d8f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Binary file added build/outputs/apk/app-debug.apk
Binary file not shown.
6 changes: 3 additions & 3 deletions src/main/res/layout/activity_my.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TEST YOU CAN SIGNAL A MOCK LOACTION"
android:text="@string/testButton"
android:id="@+id/button"
android:onClick="updateLoc"
android:layout_alignParentTop="true"
Expand Down Expand Up @@ -46,7 +46,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Usage:"
android:text="@string/usage"
android:id="@+id/textView2"
android:layout_above="@+id/textView"
android:layout_alignParentStart="true" />
Expand All @@ -55,7 +55,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Example:"
android:text="@string/exampleTitle"
android:id="@+id/textView3"
android:layout_above="@id/example"
android:layout_alignParentStart="true" />
Expand Down
3 changes: 3 additions & 0 deletions src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
<string name="example">
adb shell am broadcast -a com.example.amotz.mockLocationForDeveloper.updateLocation -e lat 15.3 -e lon 99
</string>
<string name="testButton">TEST YOU CAN SIGNAL A MOCK LOACTION</string>
<string name="usage">Usage:</string>
<string name="exampleTitle">Example:</string>


</resources>

0 comments on commit 9649d8f

Please sign in to comment.