Skip to content
This repository has been archived by the owner on Mar 26, 2019. It is now read-only.

Commit

Permalink
license changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bademus committed Dec 18, 2013
1 parent b6aeb43 commit c4297b4
Show file tree
Hide file tree
Showing 52 changed files with 1,453 additions and 169 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# exclude
.gradle/
.idea/
.idea/*
out/
build/
*~
Expand All @@ -10,3 +11,6 @@ build/
.project
.settings
local.properties

# but include
!.idea/copyright
9 changes: 9 additions & 0 deletions .idea/copyright/Apachev2.xml

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

9 changes: 9 additions & 0 deletions .idea/copyright/GPLv3.xml

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

7 changes: 7 additions & 0 deletions .idea/copyright/profiles_settings.xml

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

2 changes: 2 additions & 0 deletions feedly-andrss/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This program is licensed under GPLv3 (see gpl-3.0.txt)
Some parts of it are double-licenced GPLv3 and Apache v2 (see LICENSE-2.0.txt)
8 changes: 4 additions & 4 deletions LICENSE → feedly-andrss/LICENSE-2.0.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Apache License

Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

Expand Down Expand Up @@ -178,15 +179,15 @@ Apache License
APPENDIX: How to apply the Apache License to your work.

To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "{}"
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright {yyyy} {name of copyright owner}
Copyright [yyyy] [name of copyright owner]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -199,4 +200,3 @@ Apache License
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

11 changes: 5 additions & 6 deletions feedly-andrss/build.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
apply plugin: 'android'

dependencies {
compile 'com.android.support:support-v4:18.0.0'
//feedly-api
compile project(':feedly-api')

//google dependencies
compile "com.google.http-client:google-http-client-android:$versionGoogleClient"
//android dependencies
compile 'com.android.support:support-v4:18.0.0'
}


buildscript {
repositories {
mavenCentral()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.6.+'
Expand All @@ -23,13 +23,11 @@ idea.project { languageLevel = '1.7' }

android {
compileSdkVersion 19
buildToolsVersion "19.0.0"

buildToolsVersion '19.0.0'
defaultConfig {
minSdkVersion 14
targetSdkVersion 19
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
Expand All @@ -45,4 +43,5 @@ android {
proguardFile 'proguard-rules.txt'
}
}
signingConfigs {}
}
Loading

0 comments on commit c4297b4

Please sign in to comment.