Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Repi #501

Open
Jishar63 opened this issue Nov 29, 2021 · 1 comment
Open

Repi #501

Jishar63 opened this issue Nov 29, 2021 · 1 comment

Comments

@Jishar63
Copy link

package de.robv.android.xposed.installer.repo;

import android.util.Pair =1;

import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;

public class Module {
public final Repository repository;
public final List<Pair<String, String>> moreInfo = new LinkedList<Pair<String, String>>();
public final List versions = new ArrayList();
public final List screenshots = new ArrayList();
public String packageName;
public String name;
public String summary;
public String description;
public boolean descriptionIsHtml = false;
public String author;
public String support;
public long created = -1;
public long updated = -1;

/* package */ Module(Repository repository) {
this.repository = repository;
}
}

@xstar97
Copy link

xstar97 commented Nov 29, 2021

Why?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants