Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

125 changes: 125 additions & 0 deletions .idea/uiDesigner.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.mantucon.baracus"
package="org.baracustutorial"
android:versionCode="1"
android:versionName="1.0-SNAPSHOT" >

<uses-sdk
android:minSdkVersion="13"
android:minSdkVersion="14"
android:targetSdkVersion="16" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:name=".application.ApplicationContext"
android:name="org.baracustutorial.application.ApplicationContext"
android:theme="@style/AppTheme">
<activity android:name=".HelloAndroidActivity" >
<activity android:name="org.baracustutorial.HelloAndroidActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="org.baracustutorial.CustomerEditorActivity" android:label="Edit Customer"/>
</application>

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
</manifest>
9 changes: 8 additions & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
This file was created by IntelliJ IDEA 12.1.6 for binding GitHub repository
BUILDING THE EXAMPLES

You MUST set the sdk path (I am developing and compiling under several machines, so there are profiles!) and activate
Your matching profile on a maven build.

Example : Windows Machine, Android SDK under C:\sdk\android\
-> Modify the pom's android.sdk.path in the windows profile and build the app via mvn clean install -Pwindows

21 changes: 14 additions & 7 deletions baracus-tutorial.iml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,30 @@
<option name="CUSTOM_APK_RESOURCE_FOLDER" value="/target/generated-sources/combined-resources/res" />
<option name="APK_PATH" value="/target/baracus-tutorial.apk" />
<option name="RUN_PROCESS_RESOURCES_MAVEN_TASK" value="false" />
<includeAssetsFromLibraries>true</includeAssetsFromLibraries>
<option name="COMPILE_CUSTOM_GENERATED_SOURCES" value="false" />
<includeAssetsFromLibraries>true</includeAssetsFromLibraries>
<resOverlayFolders>
<path>/res-overlay</path>
</resOverlayFolders>
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" inherit-compiler-output="false">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false">
<output url="file://$MODULE_DIR$/target/idea-classes" />
<output-test url="file://$MODULE_DIR$/target/idea-test-classes" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/target/generated-sources/r" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/target/generated-sources/r" isTestSource="false" generated="true" />
<excludeFolder url="file://$MODULE_DIR$/target/classes" />
<excludeFolder url="file://$MODULE_DIR$/target/generated-sources/combined-assets" />
<excludeFolder url="file://$MODULE_DIR$/target/generated-sources/combined-resources" />
<excludeFolder url="file://$MODULE_DIR$/target/generated-sources/extracted-dependencies" />
<excludeFolder url="file://$MODULE_DIR$/target/idea-classes" />
<excludeFolder url="file://$MODULE_DIR$/target/maven-archiver" />
<excludeFolder url="file://$MODULE_DIR$/target/maven-status" />
<excludeFolder url="file://$MODULE_DIR$/target/unpacked-libs" />
</content>
<orderEntry type="jdk" jdkName="Maven Android 4.0 Platform" jdkType="Android SDK" />
<orderEntry type="jdk" jdkName="Maven Android API 18 Platform" jdkType="Android SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" scope="PROVIDED" name="Maven: com.google.android:android:4.0.1.2" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: commons-logging:commons-logging:1.1.1" level="project" />
Expand All @@ -34,7 +42,6 @@
<orderEntry type="library" scope="PROVIDED" name="Maven: xerces:xmlParserAPIs:2.6.2" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: xpp3:xpp3:1.1.4c" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: org.json:json:20080701" level="project" />
<orderEntry type="module" module-name="~apklib-net.mantucon.baracus_baracus-framework_0.6.2-SNAPSHOT" />
<orderEntry type="module" module-name="~apklib-org.baracus_baracus-framework_0.9.2" />
</component>
</module>

</module>

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading