Skip to content
This repository was archived by the owner on Feb 2, 2021. It is now read-only.
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
9 changes: 0 additions & 9 deletions wheel-demo/.classpath

This file was deleted.

105 changes: 105 additions & 0 deletions wheel-demo/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
# Created by https://www.gitignore.io/api/android,intellij,gradle

.DS_Store

### Android ###
# Built application files
*.apk
*.ap_

# Files for the Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/

# Gradle files
.gradle/
build/

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

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

### Android Patch ###
gen-external-apklibs


### Intellij ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm

*.iml

## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the following:

# User-specific stuff:
.idea/workspace.xml
# .idea/tasks.xml
# .idea/dictionaries
# .idea/shelf

# Sensitive or high-churn files:
# .idea/dataSources.ids
# .idea/dataSources.xml
# .idea/sqlDataSources.xml
# .idea/dynamic.xml
# .idea/uiDesigner.xml

# Gradle:
# .idea/gradle.xml
.idea/libraries

# Mongo Explorer plugin:
# .idea/mongoSettings.xml

## File-based project format:
*.ipr
*.iws

## Plugin-specific files:

# IntelliJ
/out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties


### Gradle ###
.gradle
build/

# Ignore Gradle GUI config
gradle-app.setting

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar

# Cache of project
.gradletasknamecache
40 changes: 0 additions & 40 deletions wheel-demo/.project

This file was deleted.

1 change: 1 addition & 0 deletions wheel-demo/app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
26 changes: 26 additions & 0 deletions wheel-demo/app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "kankan.wheel.demo.extended"
minSdkVersion 5
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile project(':wheel-release')
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
}
17 changes: 17 additions & 0 deletions wheel-demo/app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /Users/penaa/.android/sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package kankan.wheel.demo.extended;

import android.app.Application;
import android.test.ApplicationTestCase;

/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="kankan.wheel.demo.extended"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="4"/>

<application android:icon="@drawable/wheel" android:label="WheelDemo">
package="kankan.wheel.demo.extended">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true">

<activity android:name=".WheelDemo">
<intent-filter>
<activity android:name=".WheelDemo">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".TimeActivity" android:label="Time">
<intent-filter>
</activity>
<activity android:name=".TimeActivity" android:label="Time">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="kankan.wheel.extended.WHEEL_SAMPLE"/>
</intent-filter>
</activity>
</activity>
<activity android:name=".Time2Activity" android:label="Time 2">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand All @@ -32,24 +31,24 @@
<category android:name="kankan.wheel.extended.WHEEL_SAMPLE"/>
</intent-filter>
</activity>
<activity android:name=".PasswActivity" android:label="Password">
<intent-filter>
<activity android:name=".PasswActivity" android:label="Password">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="kankan.wheel.extended.WHEEL_SAMPLE"/>
</intent-filter>
</activity>
</activity>
<activity android:name=".SlotMachineActivity" android:label="Slot Machine">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="kankan.wheel.extended.WHEEL_SAMPLE"/>
</intent-filter>
</activity>
<activity android:name=".CitiesActivity" android:label="Cities">
<intent-filter>
<activity android:name=".CitiesActivity" android:label="Cities">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="kankan.wheel.extended.WHEEL_SAMPLE"/>
</intent-filter>
</activity>
</activity>
<activity android:name=".SpeedActivity" android:label="Speed">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand All @@ -62,8 +61,6 @@
<category android:name="kankan.wheel.extended.WHEEL_SAMPLE"/>
</intent-filter>
</activity>

</application>


</manifest>
</manifest>
Loading