Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

noa material code input #8

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Based on
How to use
----------

Minimal SDK Version 11
Minimal SDK Version 8

Usage with default colors (the default codes is 6)

Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 22
compileSdkVersion 20
buildToolsVersion "22.0.1"

defaultConfig {
applicationId "com.github.glomadrian.codeinput"
minSdkVersion 11
targetSdkVersion 22
minSdkVersion 8
targetSdkVersion 20
versionCode 11
versionName "1.1"
}
Expand All @@ -21,6 +21,6 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:appcompat-v7:20.0.0'
compile project(":codeinputlib")
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.github.glomadrian.codeinput;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.app.ActionBarActivity;

public class MainActivity extends AppCompatActivity {
public class MainActivity extends ActionBarActivity {

@Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Expand Down
6 changes: 3 additions & 3 deletions codeinputlib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ android {
buildToolsVersion "22.0.1"

defaultConfig {
minSdkVersion 11
minSdkVersion 8
targetSdkVersion 22
versionCode 11
versionName "1.1"
Expand All @@ -21,6 +21,6 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])

compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.nineoldandroids:library:2.4.0'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bad idea

}
Loading