This repository was archived by the owner on Jun 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 807
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparering first maven release 1.0.0
- Loading branch information
Sergej Shafarenka
committed
Aug 20, 2016
1 parent
2640017
commit 0d566ae
Showing
36 changed files
with
612 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
bin | ||
gen | ||
# files | ||
.project | ||
.classpath | ||
.settings | ||
.DS_Store | ||
**/.DS_Store | ||
*.iml | ||
local.properties | ||
|
||
# folders | ||
**/build/ | ||
.idea/ | ||
.gradle/ | ||
gen/ | ||
bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
buildscript { | ||
repositories { | ||
jcenter() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:2.1.3' | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
jcenter() | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 24 | ||
buildToolsVersion "24.0.1" | ||
|
||
defaultConfig { | ||
applicationId "com.hb.examples.pinnedsection" | ||
minSdkVersion 8 | ||
targetSdkVersion 24 | ||
versionCode 1 | ||
versionName "1.0.0" | ||
} | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
compile project(':library') | ||
} |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
9 changes: 5 additions & 4 deletions
9
example/res/layout/activity_main.xml → ...ple/src/main/res/layout/activity_main.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
<com.hb.views.PinnedSectionListView xmlns:android="http://schemas.android.com/apk/res/android" | ||
<de.halfbit.pinnedsection.PinnedSectionListView | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:id="@android:id/list" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:headerDividersEnabled="false" | ||
android:footerDividersEnabled="false" | ||
android:layout_height="wrap_content" | ||
android:divider="@null" | ||
android:footerDividersEnabled="false" | ||
android:headerDividersEnabled="false" | ||
/> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
GROUP=de.halfbit | ||
VERSION_NAME=1.0.0 | ||
VERSION_CODE=1 | ||
|
||
POM_DESCRIPTION=Easy to use list view with pinned sections. | ||
|
||
POM_URL=https://github.com/beworker/pinned-section-listview/ | ||
POM_SCM_URL=https://github.com/beworker/pinned-section-listview/ | ||
POM_SCM_CONNECTION=scm:[email protected]:beworker/pinned-section-listview.git | ||
POM_SCM_DEV_CONNECTION=scm:[email protected]:beworker/pinned-section-listview.git | ||
|
||
POM_LICENCE_NAME=The Apache Software License, Version 2.0 | ||
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt | ||
POM_LICENCE_DIST=repo | ||
|
||
POM_DEVELOPER_ID=beworker | ||
POM_DEVELOPER_NAME=Sergej Shafarenka |
Oops, something went wrong.