Skip to content

Commit 25b9f95

Browse files
committed
Move component over from App to Module
0 parents  commit 25b9f95

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+3572
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.gradle
2+
/local.properties
3+
/.idea/workspace.xml
4+
.DS_Store
5+
/build
6+
.idea/
7+
*iml
8+
*.iml
9+
*/build

buffertextinputlayout/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/build
2+
*iml
3+
*.iml
4+
.idea

buffertextinputlayout/build.gradle

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
apply plugin: 'com.android.library'
2+
apply from: '../config/quality/quality.gradle'
3+
4+
android {
5+
compileSdkVersion 25
6+
buildToolsVersion "25.0.1"
7+
8+
defaultConfig {
9+
minSdkVersion 16
10+
targetSdkVersion 25
11+
versionCode 1
12+
versionName "1.0"
13+
}
14+
15+
buildTypes {
16+
release {
17+
minifyEnabled false
18+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
19+
}
20+
}
21+
22+
sourceSets {
23+
androidTest {
24+
java.srcDirs = ['src/androidTest/java']
25+
res.srcDirs = ['src/androidTest/res']
26+
}
27+
}
28+
}
29+
30+
dependencies {
31+
final SUPPORT_LIBRARY_VERSION = '25.0.1'
32+
compile "com.android.support:design:$SUPPORT_LIBRARY_VERSION"
33+
compile fileTree(dir: 'libs', include: ['*.jar'])
34+
compile 'com.android.support:appcompat-v7:25.0.1'
35+
}
Lines changed: 17 additions & 0 deletions
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 /Users/joebirch/Library/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+
#}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="org.buffer.android.buffertextinputlayout">
3+
4+
<application
5+
android:allowBackup="true"
6+
android:label="@string/app_name"
7+
android:supportsRtl="true">
8+
9+
</application>
10+
11+
</manifest>

0 commit comments

Comments
 (0)