Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #17

Open
wants to merge 31 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
c231b81
Update README.md
Korilakkuma Mar 22, 2015
349b4ef
Change package
Korilakkuma Jun 27, 2015
7b7e05c
Update README.md
Korilakkuma Jun 27, 2015
02c4ce0
Fixed some setters
Korilakkuma Jun 27, 2015
b4101aa
Fixed the feature of Eraser (#2)
Korilakkuma Jun 28, 2015
1097304
Commit Unit Test code (JUnit)
Korilakkuma Jun 28, 2015
2909977
Avoid creating new Paint during OnDraw()
tgirard12 Jul 28, 2015
9bad777
Fixed Copyright
Korilakkuma Sep 22, 2015
7b08eda
Fixed README.md
Korilakkuma Sep 22, 2015
87d1c22
Update README.md
Korilakkuma Sep 22, 2015
85fea1d
Fixed Copyright
Korilakkuma Sep 22, 2015
b41e128
Merge remote-tracking branch 'tgirard12/master' into pr1
Korilakkuma Oct 17, 2015
fb7846b
Commit .gitignore
Korilakkuma Mar 22, 2016
ab6605b
Migrate to Android Studio
Korilakkuma May 30, 2016
f3cf63d
Update README.md
Korilakkuma May 30, 2016
7609960
problem: can't build aar for jitpack
Jan 30, 2017
c03c013
problem: can’t check availability of Undo & Redo (for UI)
Jan 30, 2017
185f4bf
Merge pull request #1 from infotech-group/jitpack
meoyawn Jan 30, 2017
60f8025
Merge pull request #2 from infotech-group/feature
meoyawn Jan 30, 2017
20277fb
problem: it draws rectangle only from left top to right bottom corner
Jan 31, 2017
a975182
Merge pull request #3 from infotech-group/rectangle
meoyawn Jan 31, 2017
01f5920
problem: angles is sharp and no way to change it
Jan 31, 2017
3f6e810
Merge pull request #6 from infotech-group/pathEffect
meoyawn Jan 31, 2017
5482d42
problem: it has some warnings
Jan 31, 2017
039778c
Merge pull request #7 from infotech-group/fixes
meoyawn Jan 31, 2017
f2e8910
problem: need to avoid losing «com.» in package
Jan 31, 2017
5a79f2a
Merge pull request #8 from infotech-group/fixes
meoyawn Jan 31, 2017
94df931
problem: need badge to show actual version
sidorovroman Jan 31, 2017
1f3f2ff
problem: need CI
Feb 1, 2017
b85976a
Merge pull request #10 from infotech-group/travis
meoyawn Feb 1, 2017
34c673b
Update README.md
goldinnikolai Mar 24, 2017
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
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
.DS_Store

# built application files
*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

# generated files
bin/
build/
gen/
target/

# Local configuration files
local.properties

# Proguard folder generated by Eclipse
proguard/

# Eclipse project files
.classpath
.project

# IntelliJ project files
.idea/
.gradle/
*.iml
*.ipr
*.iws

build
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
language: android
jdk: oraclejdk8

android:
components:
- tools
- platform-tools
- build-tools-25.0.2
- android-25
1 change: 1 addition & 0 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<manifest package="com.android.graphics" />
7 changes: 7 additions & 0 deletions CanvasView/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
1 change: 1 addition & 0 deletions CanvasView/app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
29 changes: 29 additions & 0 deletions CanvasView/app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "main.canvasview"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.0'
androidTestCompile 'com.android.support.test:testing-support-lib:0.1'
androidTestCompile 'org.hamcrest:hamcrest-library:1.3'
}
17 changes: 17 additions & 0 deletions CanvasView/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/rilakkuma3xjapan/Library/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 *;
#}
Loading