Skip to content

Commit

Permalink
Merge pull request ylyc#3 from markus2610/master
Browse files Browse the repository at this point in the history
support gradle and android target 22
  • Loading branch information
ylyc committed May 8, 2015
2 parents 5904e3c + 8616430 commit 034d358
Show file tree
Hide file tree
Showing 73 changed files with 635 additions and 532 deletions.
8 changes: 0 additions & 8 deletions .classpath

This file was deleted.

30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Built application files
*.apk
*.ap_

# Files for the Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/

# Gradle files
.gradle/
build/
/*/build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# android studio
.idea
33 changes: 0 additions & 33 deletions .project

This file was deleted.

27 changes: 0 additions & 27 deletions bin/AndroidManifest.xml

This file was deleted.

Binary file removed bin/CircularProgressBarExample.apk
Binary file not shown.
Binary file removed bin/classes.dex
Binary file not shown.
Binary file removed bin/classes/com/lylc/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 0 additions & 3 deletions bin/jarlist.cache

This file was deleted.

Binary file removed bin/res/drawable-hdpi/ic_launcher.png
Binary file not shown.
Binary file removed bin/res/drawable-mdpi/ic_launcher.png
Binary file not shown.
Binary file removed bin/res/drawable-xhdpi/ic_launcher.png
Binary file not shown.
Binary file removed bin/res/drawable-xxhdpi/ic_launcher.png
Binary file not shown.
Binary file removed bin/resources.ap_
Binary file not shown.
15 changes: 15 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
}
}

allprojects {
repositories {
jcenter()
}
}
19 changes: 19 additions & 0 deletions circular_progress_bar.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="java-gradle" name="Java-Gradle">
<configuration>
<option name="BUILD_FOLDER_PATH" value="$MODULE_DIR$/build" />
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

This file was deleted.

Loading

0 comments on commit 034d358

Please sign in to comment.