Skip to content

Commit

Permalink
New Example Project
Browse files Browse the repository at this point in the history
  • Loading branch information
davideas committed Jul 20, 2015
1 parent 7e1f938 commit ea7ad8e
Show file tree
Hide file tree
Showing 89 changed files with 2,356 additions and 200 deletions.
19 changes: 19 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
}
}
193 changes: 0 additions & 193 deletions eu.davidea.flexibleadapter/ExampleAdapter.java

This file was deleted.

34 changes: 34 additions & 0 deletions flexibleAdapter/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion "22"

defaultConfig {
applicationId "eu.davidea.flexibleadapter"
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile ('com.android.support:appcompat-v7:22.2.1') {

}
compile ('com.android.support:recyclerview-v7:22.2.1') {
exclude module: 'support-v4';
exclude module: 'support-annotations'
}
compile ('com.android.support:design:22.2.1') {
exclude module: 'support-v4'
exclude module: 'support-annotations'
}
}
19 changes: 19 additions & 0 deletions flexibleAdapter/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="eu.davidea.flexibleadapter" >

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name="eu.davidea.example.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>
Binary file added flexibleAdapter/src/main/ic_launcher-web.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit ea7ad8e

Please sign in to comment.