Skip to content

Commit e6bd8e9

Browse files
author
velli20
committed
v1.5
0 parents  commit e6bd8e9

40 files changed

+2822
-0
lines changed

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 Velli20
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Library/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

Library/build.gradle

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/*
2+
*
3+
* * MIT License
4+
* *
5+
* * Copyright (c) [2017] [velli20]
6+
* *
7+
* * Permission is hereby granted, free of charge, to any person obtaining a copy
8+
* * of this software and associated documentation files (the "Software"), to deal
9+
* * in the Software without restriction, including without limitation the rights
10+
* * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
* * copies of the Software, and to permit persons to whom the Software is
12+
* * furnished to do so, subject to the following conditions:
13+
* *
14+
* * The above copyright notice and this permission notice shall be included in all
15+
* * copies or substantial portions of the Software.
16+
* *
17+
* * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
* * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
* * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
* * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
* * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
* * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
* * SOFTWARE.
24+
*
25+
*/
26+
27+
apply plugin: 'com.android.library'
28+
apply plugin: 'com.github.dcendents.android-maven'
29+
30+
group='com.github.velli20'
31+
32+
android {
33+
compileSdkVersion 25
34+
buildToolsVersion "25.0.3"
35+
defaultConfig {
36+
minSdkVersion 15
37+
targetSdkVersion 25
38+
}
39+
40+
}
41+

Library/proguard-rules.pro

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in C:\Users\Viktor\AppData\Local\Android\Sdk/tools/proguard/proguard-android.txt
4+
# You can edit the include path and order by changing the proguardFiles
5+
# directive in build.gradle.
6+
#
7+
# For more details, see
8+
# http://developer.android.com/guide/developing/tools/proguard.html
9+
10+
# Add any project specific keep options here:
11+
12+
# If your project uses WebView with JS, uncomment the following
13+
# and specify the fully qualified class name to the JavaScript interface
14+
# class:
15+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16+
# public *;
17+
#}

Library/src/main/AndroidManifest.xml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ /*
4+
~ * MIT License
5+
~ *
6+
~ * Copyright (c) [2017] [velli20]
7+
~ *
8+
~ * Permission is hereby granted, free of charge, to any person obtaining a copy
9+
~ * of this software and associated documentation files (the "Software"), to deal
10+
~ * in the Software without restriction, including without limitation the rights
11+
~ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
~ * copies of the Software, and to permit persons to whom the Software is
13+
~ * furnished to do so, subject to the following conditions:
14+
~ *
15+
~ * The above copyright notice and this permission notice shall be included in all
16+
~ * copies or substantial portions of the Software.
17+
~ *
18+
~ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
~ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
~ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
~ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
~ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
~ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24+
~ * SOFTWARE.
25+
~ */
26+
-->
27+
28+
<manifest
29+
package="com.velli20.materialunixgraph">
30+
31+
32+
33+
</manifest>
123 KB
Binary file not shown.

0 commit comments

Comments
 (0)