-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version POSTA! la mejor la 1.12 lo mejor de Rusia y Argentina junto =P
- Loading branch information
1 parent
f40c9a3
commit 11bf4f5
Showing
32 changed files
with
793 additions
and
472 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,82 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="ar.com.thinksoft.ac.andrac" android:versionCode="0" | ||
android:versionName="@string/version"> | ||
<application android:icon="@drawable/icono" android:label="@string/app_name" | ||
android:name=".contexto.Aplicacion" android:theme="@style/CustomTheme" | ||
android:debuggable="true"> | ||
<activity android:name=".pantallas.Main" | ||
android:configChanges="keyboard|keyboardHidden|orientation"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<activity android:name=".pantallas.Login" | ||
android:configChanges="keyboard|keyboardHidden|orientation" | ||
android:theme="@android:style/Theme.NoDisplay" /> | ||
<activity android:name=".pantallas.Registro" | ||
android:configChanges="keyboard|keyboardHidden|orientation" /> | ||
<activity android:name=".pantallas.ListaReclamos" | ||
android:configChanges="keyboard|keyboardHidden|orientation" /> | ||
<activity android:name=".pantallas.IniciarReclamo" | ||
android:configChanges="keyboard|keyboardHidden|orientation" /> | ||
<activity android:name=".pantallas.CamaraView" | ||
android:configChanges="keyboard|keyboardHidden|orientation" /> | ||
<activity android:name=".pantallas.PerfilUsuario" | ||
android:configChanges="keyboard|keyboardHidden|orientation" /> | ||
<activity android:name=".pantallas.ListaReclamosGuardados" | ||
android:configChanges="keyboard|keyboardHidden|orientation" /> | ||
<activity android:name=".pantallas.Configuracion" | ||
android:configChanges="keyboard|keyboardHidden|orientation" /> | ||
<service android:name=".servicios.ServicioRest" | ||
android:enabled="true" /> | ||
</application> | ||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" /> | ||
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> | ||
<uses-permission android:name="android.permission.CONTROL_LOCATION_UPDATES" /> | ||
<uses-permission android:name="android.permission.CAMERA" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-feature android:name="android.hardware.camera" /> | ||
<uses-feature android:name="android.hardware.camera.autofocus" /> | ||
<uses-sdk android:targetSdkVersion="8" android:minSdkVersion="8" /> | ||
</manifest> | ||
package="ar.com.thinksoft.ac.andrac" | ||
android:versionCode="0" | ||
android:versionName="@string/version" > | ||
|
||
<application | ||
android:icon="@drawable/icono" | ||
android:label="@string/app_name" | ||
android:name=".contexto.Aplicacion" | ||
android:theme="@style/CustomTheme" > | ||
<activity | ||
android:configChanges="keyboard|keyboardHidden|orientation" | ||
android:name=".pantallas.SplashScreen" | ||
android:theme="@style/Theme.Transparent" > | ||
<intent-filter > | ||
<action android:name="android.intent.action.MAIN" > | ||
</action> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" > | ||
</category> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:configChanges="keyboard|keyboardHidden|orientation" | ||
android:name=".pantallas.Main" > | ||
<intent-filter > | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:configChanges="keyboard|keyboardHidden|orientation" | ||
android:name=".pantallas.Login" | ||
android:theme="@android:style/Theme.NoDisplay" /> | ||
<activity | ||
android:configChanges="keyboard|keyboardHidden|orientation" | ||
android:name=".pantallas.Registro" /> | ||
<activity | ||
android:configChanges="keyboard|keyboardHidden|orientation" | ||
android:name=".pantallas.ListaReclamos" /> | ||
<activity | ||
android:configChanges="keyboard|keyboardHidden|orientation" | ||
android:name=".pantallas.IniciarReclamo" /> | ||
<activity | ||
android:configChanges="keyboard|keyboardHidden|orientation" | ||
android:name=".pantallas.CamaraView" /> | ||
<activity | ||
android:configChanges="keyboard|keyboardHidden|orientation" | ||
android:name=".pantallas.PerfilUsuario" /> | ||
<activity | ||
android:configChanges="keyboard|keyboardHidden|orientation" | ||
android:name=".pantallas.ListaReclamosGuardados" /> | ||
<activity | ||
android:configChanges="keyboard|keyboardHidden|orientation" | ||
android:name=".pantallas.Configuracion" /> | ||
<activity | ||
android:configChanges="keyboard|keyboardHidden|orientation" | ||
android:name=".pantallas.MainPreference" /> | ||
|
||
<service | ||
android:enabled="true" | ||
android:name=".servicios.ServicioRest" /> | ||
</application> | ||
|
||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" /> | ||
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> | ||
<uses-permission android:name="android.permission.CONTROL_LOCATION_UPDATES" /> | ||
<uses-permission android:name="android.permission.CAMERA" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
|
||
<uses-feature android:name="android.hardware.camera" /> | ||
<uses-feature android:name="android.hardware.camera.autofocus" /> | ||
|
||
<uses-sdk | ||
android:minSdkVersion="8" | ||
android:targetSdkVersion="8" /> | ||
|
||
</manifest> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# This file is automatically generated by Android Tools. | ||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED! | ||
# | ||
# This file must be checked in Version Control Systems. | ||
# | ||
# To customize properties used by the Ant build system use, | ||
# "ant.properties", and override values to adapt the script to your | ||
# project structure. | ||
|
||
# Project target. | ||
target=android-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<alpha android:interpolator="@android:anim/accelerate_interpolator" | ||
android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="800" /> | ||
</set> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<set xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<alpha android:interpolator="@android:anim/decelerate_interpolator" | ||
android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="800" /> | ||
</set> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.