Add SoundCloud service (#15)

Add SoundCloud service
This commit is contained in:
wb9688
2017-08-04 16:21:45 +02:00
committed by Mauricio Colli
parent 12bfdf5234
commit f314bec396
19 changed files with 1093 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
package org.schabi.newpipe.extractor;
import org.schabi.newpipe.extractor.services.youtube.YoutubeService;
import org.schabi.newpipe.extractor.services.soundcloud.SoundcloudService;
/*
* Created by the-scrabi on 18.02.17.
@@ -8,6 +9,7 @@ import org.schabi.newpipe.extractor.services.youtube.YoutubeService;
class ServiceList {
public static final StreamingService[] serviceList = {
new YoutubeService(0)
new YoutubeService(0),
new SoundcloudService(1)
};
}