Initial upload for the M28 Charlotte App
Contains initial PhoneGap code, and Django template system Template system is set up to render the templates out so PhoneGap can use them, rather than having to re-code everything by hand.
63
bin/AndroidManifest.xml
Normal file
@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:windowSoftInputMode="adjustPan"
|
||||
package="com.M28.M28App" android:versionName="1.0" android:versionCode="1" android:hardwareAccelerated="true">
|
||||
<supports-screens
|
||||
android:largeScreens="true"
|
||||
android:normalScreens="true"
|
||||
android:smallScreens="true"
|
||||
android:xlargeScreens="true"
|
||||
android:resizeable="true"
|
||||
android:anyDensity="true"
|
||||
/>
|
||||
|
||||
<uses-permission android:name="android.permission.CAMERA" />
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||
<uses-permission android:name="android.permission.RECORD_VIDEO"/>
|
||||
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
||||
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
||||
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
||||
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
|
||||
|
||||
|
||||
<application android:icon="@drawable/icon" android:label="@string/app_name"
|
||||
android:hardwareAccelerated="true"
|
||||
android:debuggable="true">
|
||||
<activity android:name="M28App" android:label="@string/app_name"
|
||||
android:theme="@android:style/Theme.Black.NoTitleBar"
|
||||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17"/>
|
||||
</manifest>
|
BIN
bin/M28App.apk
Normal file
BIN
bin/classes.dex
Normal file
BIN
bin/classes/com/M28/M28App/BuildConfig.class
Normal file
BIN
bin/classes/com/M28/M28App/M28App.class
Normal file
BIN
bin/classes/com/M28/M28App/R$attr.class
Normal file
BIN
bin/classes/com/M28/M28App/R$drawable.class
Normal file
BIN
bin/classes/com/M28/M28App/R$layout.class
Normal file
BIN
bin/classes/com/M28/M28App/R$string.class
Normal file
BIN
bin/classes/com/M28/M28App/R$xml.class
Normal file
BIN
bin/classes/com/M28/M28App/R.class
Normal file
BIN
bin/dexedLibs/cordova-2.5.0-6a14f8fe998c400f2fa726fc3a164b77.jar
Normal file
3
bin/jarlist.cache
Normal file
@ -0,0 +1,3 @@
|
||||
# cache for current jar dependecy. DO NOT EDIT.
|
||||
# format is <lastModified> <length> <SHA-1> <path>
|
||||
# Encoding is UTF-8
|
BIN
bin/res/drawable-hdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 9.0 KiB |
BIN
bin/res/drawable-hdpi/icon.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
bin/res/drawable-ldpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
bin/res/drawable-ldpi/icon.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
bin/res/drawable-mdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
bin/res/drawable-mdpi/icon.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
bin/res/drawable-xhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
bin/res/drawable-xhdpi/icon.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
bin/res/drawable/icon.png
Normal file
After Width: | Height: | Size: 6.7 KiB |