This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
557 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,32 @@ | ||
apply plugin: 'com.android.library' | ||
|
||
ext.pubspec = [:] | ||
|
||
pubspec.packaging = 'aar' | ||
pubspec.groupId = 'com.samelody.modapter' | ||
pubspec.artifactId = 'modapter-core' | ||
pubspec.repo = 'maven' | ||
pubspec.name = 'Modapter' | ||
pubspec.description = 'Modular adapter for Android RecyclerView.' | ||
pubspec.version = "0.2.0" | ||
pubspec.versionCode = 2 | ||
pubspec.url = 'https://github.com/samelody/modapter' | ||
pubspec.gitUrl = 'https://github.com/samelody/modapter.git' | ||
pubspec.issueUrl = 'https://github.com/samelody/modapter/issues' | ||
pubspec.developerId = 'belinwu' | ||
pubspec.developerName = 'Belin Wu' | ||
pubspec.developerEmail = '[email protected]' | ||
pubspec.licenseName = 'Apache License 2.0' | ||
pubspec.licenseUrl = 'https://raw.githubusercontent.com/samelody/modapter/master/LICENSE' | ||
pubspec.licenses = ["Apache-2.0"] | ||
|
||
android { | ||
compileSdkVersion deps.compileSdk | ||
defaultConfig { | ||
minSdkVersion deps.minSdk | ||
targetSdkVersion deps.targetSdk | ||
versionCode deps.libVersionCode | ||
versionName deps.libVersionName | ||
versionCode pubspec.versionCode | ||
versionName pubspec.version | ||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | ||
} | ||
|
||
|
@@ -29,23 +49,4 @@ dependencies { | |
androidTestImplementation deps.espresso | ||
} | ||
|
||
ext.pubspec = [:] | ||
|
||
pubspec.packaging = 'aar' | ||
pubspec.groupId = 'com.samelody.modapter' | ||
pubspec.artifactId = 'modapter' | ||
pubspec.repo = 'maven' | ||
pubspec.name = 'Modapter' | ||
pubspec.description = 'Modular adapter for Android RecyclerView.' | ||
pubspec.version = deps.libVersionName | ||
pubspec.url = 'https://github.com/samelody/modapter' | ||
pubspec.gitUrl = 'https://github.com/samelody/modapter.git' | ||
pubspec.issueUrl = 'https://github.com/samelody/modapter/issues' | ||
pubspec.developerId = 'belinwu' | ||
pubspec.developerName = 'Belin Wu' | ||
pubspec.developerEmail = '[email protected]' | ||
pubspec.licenseName = 'Apache License 2.0' | ||
pubspec.licenseUrl = 'https://raw.githubusercontent.com/samelody/modapter/master/LICENSE' | ||
pubspec.licenses = ["Apache-2.0"] | ||
|
||
apply from: "https://raw.githubusercontent.com/samelody/pubman/master/pub.gradle" |
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
library/src/main/AndroidManifest.xml → core/src/main/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.samelody.modapter" /> | ||
package="com.samelody.modapter.core" /> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.