Skip to content
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
8 changes: 4 additions & 4 deletions LeonidsExamples/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
compileSdkVersion 30
buildToolsVersion "30.0.3"

defaultConfig {
applicationId "com.plattysoft.leonids.examples"
minSdkVersion 11
targetSdkVersion 25
targetSdkVersion 30
}

buildTypes {
Expand All @@ -19,7 +19,7 @@ android {
}

dependencies {
compile project(':LeonidsLib')
implementation project(':LeonidsLib')
// compile files('libs/LeonidsLib.jar')
// compile 'com.plattysoft.leonids:LeonidsLib:1.3.1'
}
6 changes: 3 additions & 3 deletions LeonidsLib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ apply plugin: 'com.jfrog.bintray'
def versionName = '1.3.2'

android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
compileSdkVersion 30
buildToolsVersion "30.0.3"

defaultConfig {
minSdkVersion 11
targetSdkVersion 25
targetSdkVersion 30
}

buildTypes {
Expand Down
4 changes: 0 additions & 4 deletions LeonidsLib/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="17" />

<application
android:allowBackup="true"
>
Expand Down
Loading