
Gradle:
repositories {
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
compile 'com.github.aerdy:Android-Viger_View_Pager_PDF_OpenSource:-SNAPSHOT'
}
minSdkVersion 15
private void fromNetwork(String endpoint) {
new VigerPDF(this, endpoint).initFromFile(new OnResultListener() {
@Override
public void resultData(ArrayList<Bitmap> data) {
VigerAdapter adapter = new VigerAdapter(getApplicationContext(),data);
viewPager.setAdapter(adapter);
}
});
}
private void fromFile(String path) {
File file = new File(path);
new VigerPDF(this, file).initFromFile(new OnResultListener() {
@Override
public void resultData(ArrayList<Bitmap> data) {
VigerAdapter adapter = new VigerAdapter(getApplicationContext(),data);
viewPager.setAdapter(adapter);
}
});
}
Copyright 2017 Necis Studio
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
$ claude mcp add Viger-PDF \
-- python -m otcore.mcp_server <graph>