Skip to content

Commit

Permalink
Added license header to all files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Yaconi H committed Aug 13, 2012
1 parent a7ada65 commit c5a8ec8
Show file tree
Hide file tree
Showing 154 changed files with 744 additions and 226 deletions.
8 changes: 7 additions & 1 deletion AndroidManifest.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.prey" package="com.prey"
android:installLocation="internalOnly" android:installLocation="internalOnly"
Expand Down Expand Up @@ -197,4 +203,4 @@
</receiver> </receiver>
</application> </application>


</manifest> </manifest>
8 changes: 7 additions & 1 deletion lint.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<lint> <lint>
<issue id="ButtonCase" severity="error" /> <issue id="ButtonCase" severity="error" />
<issue id="ButtonOrder" severity="error" /> <issue id="ButtonOrder" severity="error" />
Expand All @@ -7,4 +13,4 @@
<ignore path="src/com/prey/backwardcompatibility/FroyoSupport.java" /> <ignore path="src/com/prey/backwardcompatibility/FroyoSupport.java" />
<ignore path="src/com/prey/receivers/PreyDeviceAdmin.java" /> <ignore path="src/com/prey/receivers/PreyDeviceAdmin.java" />
</issue> </issue>
</lint> </lint>
6 changes: 6 additions & 0 deletions project.properties
@@ -1,3 +1,9 @@
#-------------------------------------------------------------------------------
# Created by Carlos Yaconi
# Copyright 2012 Fork Ltd. All rights reserved.
# License: GPLv3
# Full license at "/LICENSE"
#-------------------------------------------------------------------------------
# This file is automatically generated by Android Tools. # This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED! # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
# #
Expand Down
8 changes: 7 additions & 1 deletion res/drawable/border.xml
@@ -1,7 +1,13 @@
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android"> <shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:width="2dp" android:color="#FFFFFF" /> <stroke android:width="2dp" android:color="#FFFFFF" />
<solid android:color="#444646"/> <solid android:color="#444646"/>
<padding android:left="7dp" android:top="7dp" <padding android:left="7dp" android:top="7dp"
android:right="7dp" android:bottom="7dp" /> android:right="7dp" android:bottom="7dp" />
<corners android:radius="4dp" /> <corners android:radius="4dp" />
</shape> </shape>
8 changes: 7 additions & 1 deletion res/drawable/button_bg_selector.xml
@@ -1,6 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/button_selected" /> <item android:state_pressed="true" android:drawable="@drawable/button_selected" />
<item android:state_focused="true" android:drawable="@drawable/button_focused" /> <item android:state_focused="true" android:drawable="@drawable/button_focused" />
<item android:drawable="@drawable/button_normal" /> <item android:drawable="@drawable/button_normal" />
</selector> </selector>
8 changes: 7 additions & 1 deletion res/drawable/button_camouflage.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <layer-list xmlns:android="http://schemas.android.com/apk/res/android">


<item android:top="2dp" android:bottom="2dp"> <item android:top="2dp" android:bottom="2dp">
Expand All @@ -25,4 +31,4 @@
android:topRightRadius="2dp" /> android:topRightRadius="2dp" />
</shape> </shape>
</item> </item>
</layer-list> </layer-list>
8 changes: 7 additions & 1 deletion res/drawable/button_camouflage_selector.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/button_camouflage" /> <item android:drawable="@drawable/button_camouflage" />
</selector> </selector>
8 changes: 7 additions & 1 deletion res/drawable/button_focused.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:top="2dp" android:bottom="2dp"> <item android:top="2dp" android:bottom="2dp">
<shape android:shape="rectangle"> <shape android:shape="rectangle">
Expand All @@ -23,4 +29,4 @@
android:topRightRadius="4dp" /> android:topRightRadius="4dp" />
</shape> </shape>
</item> </item>
</layer-list> </layer-list>
8 changes: 7 additions & 1 deletion res/drawable/button_normal.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <layer-list xmlns:android="http://schemas.android.com/apk/res/android">


<item android:top="2dp" android:bottom="2dp"> <item android:top="2dp" android:bottom="2dp">
Expand All @@ -25,4 +31,4 @@
android:topRightRadius="2dp" /> android:topRightRadius="2dp" />
</shape> </shape>
</item> </item>
</layer-list> </layer-list>
8 changes: 7 additions & 1 deletion res/drawable/button_selected.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <layer-list xmlns:android="http://schemas.android.com/apk/res/android">


<item android:top="2dp" android:bottom="2dp"> <item android:top="2dp" android:bottom="2dp">
Expand All @@ -25,4 +31,4 @@
android:topRightRadius="4dp" /> android:topRightRadius="4dp" />
</shape> </shape>
</item> </item>
</layer-list> </layer-list>
8 changes: 7 additions & 1 deletion res/drawable/gradient_line.xml
@@ -1,9 +1,15 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android" <shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"> android:shape="rectangle">
<gradient <gradient
android:startColor="#00000000" android:startColor="#00000000"
android:centerColor="#FFFFFFFF" android:centerColor="#FFFFFFFF"
android:endColor="#00000000" android:endColor="#00000000"
android:angle="0" /> android:angle="0" />
</shape> </shape>
8 changes: 7 additions & 1 deletion res/drawable/input_text.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >


<item <item
Expand Down Expand Up @@ -31,4 +37,4 @@
</shape> </shape>
</item> </item>


</layer-list> </layer-list>
8 changes: 7 additions & 1 deletion res/layout-land/add_device.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
Expand Down Expand Up @@ -60,4 +66,4 @@
android:text="@string/add_this_device" /> android:text="@string/add_this_device" />


</LinearLayout> </LinearLayout>
</LinearLayout> </LinearLayout>
8 changes: 7 additions & 1 deletion res/layout-land/camouflage.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_height="fill_parent"
Expand Down Expand Up @@ -52,4 +58,4 @@


</LinearLayout> </LinearLayout>


</LinearLayout> </LinearLayout>
8 changes: 7 additions & 1 deletion res/layout-land/congratulations.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/login_header" android:id="@+id/login_header"
android:layout_width="fill_parent" android:layout_width="fill_parent"
Expand Down Expand Up @@ -51,4 +57,4 @@
android:layout_marginBottom="15dp" android:layout_marginBottom="15dp"
android:text="@string/go_to_settings" /> android:text="@string/go_to_settings" />


</RelativeLayout> </RelativeLayout>
8 changes: 7 additions & 1 deletion res/layout-land/header_land.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_height="fill_parent"
Expand Down Expand Up @@ -107,4 +113,4 @@


</LinearLayout> </LinearLayout>


</LinearLayout> </LinearLayout>
8 changes: 7 additions & 1 deletion res/layout-land/login.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
Expand Down Expand Up @@ -31,4 +37,4 @@


</LinearLayout> </LinearLayout>


</RelativeLayout> </RelativeLayout>
8 changes: 7 additions & 1 deletion res/layout-land/new_account.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_height="fill_parent"
Expand Down Expand Up @@ -86,4 +92,4 @@
android:layout_marginTop="20dp" android:layout_marginTop="20dp"
android:text="@string/create_my_account" /> android:text="@string/create_my_account" />


</LinearLayout> </LinearLayout>
8 changes: 7 additions & 1 deletion res/layout-land/password.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
Expand Down Expand Up @@ -39,4 +45,4 @@






</RelativeLayout> </RelativeLayout>
8 changes: 7 additions & 1 deletion res/layout-land/sms.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
Expand Down Expand Up @@ -108,4 +114,4 @@


</LinearLayout> </LinearLayout>


</RelativeLayout> </RelativeLayout>
8 changes: 7 additions & 1 deletion res/layout-land/welcome.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_height="fill_parent"
Expand Down Expand Up @@ -30,4 +36,4 @@
android:text="@string/new_user" /> android:text="@string/new_user" />
</LinearLayout> </LinearLayout>


</RelativeLayout> </RelativeLayout>
8 changes: 7 additions & 1 deletion res/layout-large-land/camouflage.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_height="fill_parent"
Expand Down Expand Up @@ -49,4 +55,4 @@
android:text="@string/log_in" /> android:text="@string/log_in" />
</LinearLayout> </LinearLayout>


</RelativeLayout> </RelativeLayout>
8 changes: 7 additions & 1 deletion res/layout-large-land/congratulations.xml
@@ -1,4 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!--
Created by Carlos Yaconi
Copyright 2012 Fork Ltd. All rights reserved.
License: GPLv3
Full license at "/LICENSE"
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/login_header" android:id="@+id/login_header"
android:layout_width="fill_parent" android:layout_width="fill_parent"
Expand Down Expand Up @@ -51,4 +57,4 @@
android:layout_marginBottom="15dp" android:layout_marginBottom="15dp"
android:text="@string/go_to_settings" /> android:text="@string/go_to_settings" />


</RelativeLayout> </RelativeLayout>

0 comments on commit c5a8ec8

Please sign in to comment.