mirror of
https://github.com/revanced/revanced-patches.git
synced 2025-06-12 13:17:38 +02:00
chore: Separate extensions by app (#3905)
This commit is contained in:
17
extensions/tumblr/stub/build.gradle.kts
Normal file
17
extensions/tumblr/stub/build.gradle.kts
Normal file
@ -0,0 +1,17 @@
|
||||
plugins {
|
||||
id(libs.plugins.android.library.get().pluginId)
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "app.revanced.extension"
|
||||
compileSdk = 33
|
||||
|
||||
defaultConfig {
|
||||
minSdk = 24
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_11
|
||||
targetCompatibility = JavaVersion.VERSION_11
|
||||
}
|
||||
}
|
1
extensions/tumblr/stub/src/main/AndroidManifest.xml
Normal file
1
extensions/tumblr/stub/src/main/AndroidManifest.xml
Normal file
@ -0,0 +1 @@
|
||||
<manifest/>
|
@ -0,0 +1,8 @@
|
||||
package com.tumblr.rumblr.model;
|
||||
|
||||
public class TimelineObject<T extends Timelineable> {
|
||||
public final T getData() {
|
||||
throw new UnsupportedOperationException("Stub");
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
package com.tumblr.rumblr.model;
|
||||
|
||||
public enum TimelineObjectType {
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
package com.tumblr.rumblr.model;
|
||||
|
||||
public interface Timelineable {
|
||||
TimelineObjectType getTimelineObjectType();
|
||||
}
|
Reference in New Issue
Block a user