Skip to content

Commit

Permalink
added appcompat support
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrinderle committed Apr 8, 2016
1 parent 1998ca6 commit 8c76c29
Show file tree
Hide file tree
Showing 763 changed files with 22,192 additions and 921 deletions.
Binary file modified apk-2.7/.gradle/2.2.1/taskArtifacts/cache.properties.lock
Binary file not shown.
Binary file modified apk-2.7/.gradle/2.2.1/taskArtifacts/fileHashes.bin
Binary file not shown.
Binary file modified apk-2.7/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin
Binary file not shown.
Binary file modified apk-2.7/.gradle/2.2.1/taskArtifacts/outputFileStates.bin
Binary file not shown.
Binary file modified apk-2.7/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin
Binary file not shown.
11 changes: 0 additions & 11 deletions apk-2.7/.idea/libraries/guava_18_0.xml

This file was deleted.

9 changes: 0 additions & 9 deletions apk-2.7/.idea/libraries/libGoogleAnalytics.xml

This file was deleted.

9 changes: 0 additions & 9 deletions apk-2.7/.idea/libraries/locale_platform.xml

This file was deleted.

18 changes: 17 additions & 1 deletion apk-2.7/.idea/misc.xml

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

297 changes: 210 additions & 87 deletions apk-2.7/.idea/workspace.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apk-2.7/apk-2.7.iml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6" inherit-compiler-output="true">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
Expand Down
13 changes: 8 additions & 5 deletions apk-2.7/app/app.iml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6" inherit-compiler-output="false">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="false">
<output url="file://$MODULE_DIR$/build/intermediates/classes/debug" />
<output-test url="file://$MODULE_DIR$/build/intermediates/classes/androidTest/debug" />
<exclude-output />
Expand Down Expand Up @@ -69,6 +69,8 @@
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/debug" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/dependency-cache" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/dex" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/appcompat-v7/21.0.3/jars" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/support-v4/21.0.3/jars" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/incremental" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/manifests" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/pre-dexed" />
Expand All @@ -79,11 +81,12 @@
<excludeFolder url="file://$MODULE_DIR$/build/outputs" />
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
</content>
<orderEntry type="jdk" jdkName="Android API 15 Platform" jdkType="Android SDK" />
<orderEntry type="jdk" jdkName="Android API 21 Platform" jdkType="Android SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" exported="" name="libGoogleAnalytics" level="project" />
<orderEntry type="library" exported="" name="guava-18.0" level="project" />
<orderEntry type="library" exported="" name="locale_platform" level="project" />
<orderEntry type="library" exported="" name="appcompat-v7-21.0.3" level="project" />
<orderEntry type="library" exported="" name="guava-19.0" level="project" />
<orderEntry type="library" exported="" name="support-v4-21.0.3" level="project" />
<orderEntry type="library" exported="" name="support-annotations-21.0.3" level="project" />
<orderEntry type="library" exported="" name="script" level="project" />
</component>
</module>
9 changes: 5 additions & 4 deletions apk-2.7/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 15
buildToolsVersion "23.0.1"
compileSdkVersion 21
buildToolsVersion "21.0.1"

defaultConfig {
applicationId "com.android.python27"
minSdkVersion 4
targetSdkVersion 4
minSdkVersion 11
targetSdkVersion 21
}

buildTypes {
Expand All @@ -21,4 +21,5 @@ android {
dependencies {
compile 'com.google.guava:guava:19.0'
compile files('libs/script.jar')
compile "com.android.support:appcompat-v7:21.0.+"
}
Loading

0 comments on commit 8c76c29

Please sign in to comment.