Skip to content

Commit f4a9ef8

Browse files
committed
Created paging3 module
1 parent ddcef37 commit f4a9ef8

14 files changed

+160
-2
lines changed

.idea/gradle.xml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
allprojects {
11-
group = "com.github.SanjayDevTech"
11+
group = "com.github.SanjayDevTech.pexels-android"
1212
version = '1.0.3'
1313
}
1414

core/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ afterEvaluate {
4444
publications {
4545
release(MavenPublication) {
4646
groupId = project.group
47-
artifactId = 'pexels-android'
47+
artifactId = 'core'
4848
version = project.version
4949
from components.release
5050
}

paging3/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

paging3/build.gradle

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
plugins {
2+
id 'com.android.library'
3+
id 'org.jetbrains.kotlin.android'
4+
id 'maven-publish'
5+
}
6+
7+
android {
8+
namespace 'com.pexels.android.paging3'
9+
compileSdk 34
10+
11+
defaultConfig {
12+
minSdk 21
13+
targetSdk 34
14+
15+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
16+
consumerProguardFiles "consumer-rules.pro"
17+
}
18+
19+
buildTypes {
20+
release {
21+
minifyEnabled false
22+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
23+
}
24+
}
25+
compileOptions {
26+
sourceCompatibility JavaVersion.VERSION_17
27+
targetCompatibility JavaVersion.VERSION_17
28+
}
29+
kotlinOptions {
30+
jvmTarget = '17'
31+
}
32+
}
33+
afterEvaluate {
34+
publishing {
35+
publications {
36+
release(MavenPublication) {
37+
groupId = project.group
38+
artifactId = 'paging3'
39+
version = project.version
40+
from components.release
41+
}
42+
}
43+
}
44+
}
45+
dependencies {
46+
47+
implementation 'androidx.core:core-ktx:1.12.0'
48+
implementation "androidx.paging:paging-runtime-ktx:3.2.1"
49+
api project(":core")
50+
}

paging3/consumer-rules.pro

Whitespace-only changes.

paging3/proguard-rules.pro

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile

paging3/src/main/AndroidManifest.xml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
3+
4+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package com.pexels.android.paging3
2+
3+
object PagingSourceProvider {
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package com.pexels.android.paging3.photo
2+
3+
import androidx.paging.PagingSource
4+
import androidx.paging.PagingState
5+
import com.pexels.android.PexelsClient
6+
import com.pexels.android.model.photo.PhotoResource
7+
8+
class CuratedPhotoPagingSource(
9+
private val client: PexelsClient,
10+
) : PagingSource<Int, PhotoResource>() {
11+
override fun getRefreshKey(state: PagingState<Int, PhotoResource>): Int? {
12+
TODO("Not yet implemented")
13+
}
14+
15+
override suspend fun load(params: LoadParams<Int>): LoadResult<Int, PhotoResource> {
16+
TODO("Not yet implemented")
17+
}
18+
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package com.pexels.android.paging3.photo
2+
3+
import androidx.paging.PagingSource
4+
import androidx.paging.PagingState
5+
import com.pexels.android.PexelsClient
6+
import com.pexels.android.model.photo.PhotoResource
7+
8+
class SearchPhotoPagingSource(
9+
private val client: PexelsClient,
10+
) : PagingSource<Int, PhotoResource>() {
11+
override fun getRefreshKey(state: PagingState<Int, PhotoResource>): Int? {
12+
TODO("Not yet implemented")
13+
}
14+
15+
override suspend fun load(params: LoadParams<Int>): LoadResult<Int, PhotoResource> {
16+
TODO("Not yet implemented")
17+
}
18+
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package com.pexels.android.paging3.video
2+
3+
import androidx.paging.PagingSource
4+
import androidx.paging.PagingState
5+
import com.pexels.android.PexelsClient
6+
import com.pexels.android.model.photo.PhotoResource
7+
8+
class CuratedVideoPagingSource(
9+
private val client: PexelsClient,
10+
) : PagingSource<Int, PhotoResource>() {
11+
override fun getRefreshKey(state: PagingState<Int, PhotoResource>): Int? {
12+
TODO("Not yet implemented")
13+
}
14+
15+
override suspend fun load(params: LoadParams<Int>): LoadResult<Int, PhotoResource> {
16+
TODO("Not yet implemented")
17+
}
18+
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package com.pexels.android.paging3.video
2+
3+
import androidx.paging.PagingSource
4+
import androidx.paging.PagingState
5+
import com.pexels.android.PexelsClient
6+
import com.pexels.android.model.photo.PhotoResource
7+
8+
class SearchVideoPagingSource(
9+
private val client: PexelsClient,
10+
) : PagingSource<Int, PhotoResource>() {
11+
override fun getRefreshKey(state: PagingState<Int, PhotoResource>): Int? {
12+
TODO("Not yet implemented")
13+
}
14+
15+
override suspend fun load(params: LoadParams<Int>): LoadResult<Int, PhotoResource> {
16+
TODO("Not yet implemented")
17+
}
18+
19+
}

settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ dependencyResolutionManagement {
1717
rootProject.name = "Pexels Android"
1818
include ':core'
1919
include ':sample'
20+
include ':paging3'

0 commit comments

Comments
 (0)