Skip to content

Commit

Permalink
Merge pull request #6 from R12rus/feature/manifest_merge_bug
Browse files Browse the repository at this point in the history
manifest merge bug was fixed
  • Loading branch information
RomanTcv authored Jan 19, 2018
2 parents 4b09103 + f4ae68b commit 9b02847
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 37 deletions.
12 changes: 1 addition & 11 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "26.0.0"
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.supportVersion
defaultConfig {
applicationId "r12.shadowframelayoutexample"
minSdkVersion 9
targetSdkVersion 25
minSdkVersion 14
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand All @@ -24,7 +24,7 @@ dependencies {
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile "com.android.support:appcompat-v7:$supportVersion"
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile project(':shadowframelayout')
testCompile 'junit:junit:4.12'
Expand Down
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.supportVersion = '27.0.2'
ext.compileSdkVersion = 27
ext.targetSdkVersion = 27

repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.android.tools.build:gradle:3.0.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -16,6 +21,7 @@ allprojects {
repositories {
jcenter()
maven { url 'https://jitpack.io' }
google()
}
}

Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Jun 17 18:34:56 MSK 2017
#Fri Jan 19 10:49:16 MSK 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
11 changes: 6 additions & 5 deletions shadowframelayout/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 25
buildToolsVersion "26.0.0"

compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.supportVersion

defaultConfig {
minSdkVersion 9
targetSdkVersion 25
minSdkVersion 14
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 2
versionName "1.0"

Expand All @@ -26,6 +27,6 @@ dependencies {
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
implementation 'com.android.support:appcompat-v7:27.0.2'
testCompile 'junit:junit:4.12'
}
14 changes: 1 addition & 13 deletions shadowframelayout/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"

package="r12.shadowframelayout"
>

<application android:allowBackup="true"
android:label="@string/app_name"
android:supportsRtl="true"
>

</application>

</manifest>
<manifest package="r12.shadowframelayout"/>

0 comments on commit 9b02847

Please sign in to comment.