Skip to content

Commit

Permalink
Set up login flow library
Browse files Browse the repository at this point in the history
  • Loading branch information
aforcier committed Oct 16, 2017
0 parents commit 1f2c781
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# OS X generated file
.DS_Store

# built application files
*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

# generated files
bin/
gen/
build/
build.log

# Local configuration file (sdk path, etc)
local.properties

# Eclipse project files
.settings/
.classpath
.project

# Intellij project files
*.iml
*.ipr
*.iws
.idea/
captures/

# Gradle
.gradle/
gradle.properties

# Generated by gradle
crashlytics.properties

# Generated by Crashlytics
WordPress/src/main/res/values/com_crashlytics_export_strings.xml

# Silver Searcher ignore file
.agignore

# Monkey runner settings
WordPress/src/androidTest/monkeys/settings.py
*.pyc
WordPress/src/androidTest/monkeys/*.png

# Windows Backup
*.bak
25 changes: 25 additions & 0 deletions WordPressLoginFlow/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
}
}

apply plugin: 'com.android.library'

android {
compileSdkVersion 25
buildToolsVersion "25.0.3"

defaultConfig {
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0"

}
}

dependencies {}
3 changes: 3 additions & 0 deletions WordPressLoginFlow/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="org.wordpress.android.login">
</manifest>
Empty file added build.gradle
Empty file.
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include ':WordPressLoginFlow'

0 comments on commit 1f2c781

Please sign in to comment.