forked from maxmpz/powerampapi
-
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.
- all subprojects/modules now moved into single gradle project - updated to gradle 7.1.1, AGP 7.0.0 - added necessary logic to support Android 11/targetSDKVersion 30 - provided resources-only APK for the skin building
- Loading branch information
Showing
448 changed files
with
915 additions
and
7,556 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
*.iml | ||
.gradle/ | ||
local.properties | ||
/bin | ||
/gen | ||
.DS_Store | ||
.idea/ | ||
.DS_Store | ||
build/ | ||
.externalNativeBuild |
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
Binary file not shown.
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
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.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,27 +1,30 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
apply plugin: 'com.android.application' | ||
|
||
buildscript { | ||
|
||
repositories { | ||
google() | ||
jcenter() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:4.2.2' | ||
|
||
android { | ||
compileSdkVersion 30 | ||
buildToolsVersion "31.0.0" | ||
|
||
// NOTE: Do not place your application dependencies here; they belong | ||
// in the individual module build.gradle files | ||
defaultConfig { | ||
applicationId "com.maxmpz.poweramp.apiexample" | ||
minSdkVersion 21 | ||
targetSdkVersion 30 | ||
versionCode 1 | ||
versionName "1.0" | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
jcenter() | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
|
||
|
||
dependencies { | ||
implementation 'androidx.appcompat:appcompat:1.3.1' | ||
implementation project(':poweramp_api_lib') | ||
} |
6 changes: 0 additions & 6 deletions
6
poweramp_api_example/gradle/wrapper/gradle-wrapper.properties
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,9 +1,10 @@ | ||
# Poweramp Intent APIs Example | ||
============================================ | ||
|
||
This is an example project that demonstrates Poweramp v2 and v3 Intent based APIs. These APIs are focused on simplicity: you can just | ||
This is an example project that demonstrates Poweramp Intent based APIs. These APIs are focused on simplicity: you can just | ||
throw a simple Intent to Poweramp to play something, command Poweramp to do something, or get some Poweramp state from the published Intents. | ||
While being simple Intent APIs provide almost complete control over Poweramp. | ||
While being simple the Intent APIs provide almost complete control over Poweramp. | ||
The intents can be sent programmatically or by the automation apps. | ||
|
||
Please see: [../poweramp_api_lib/readme.md](../poweramp_api_lib/readme.md) for details. Also see comments/doc-comments in Example project source files. | ||
|
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
plugins { | ||
id 'com.android.library' | ||
} | ||
|
||
android { | ||
compileSdk 30 | ||
buildToolsVersion "31.0.0" | ||
|
||
defaultConfig { | ||
minSdk 21 | ||
targetSdk 30 | ||
targetSdkVersion 30 | ||
minSdkVersion 21 | ||
} | ||
|
||
buildTypes { | ||
release { | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
compileSdkVersion 30 | ||
} | ||
|
||
dependencies { | ||
api 'org.eclipse.jdt:org.eclipse.jdt.annotation:2.2.600' | ||
} |
Oops, something went wrong.