1<?xml version="1.0" encoding="UTF-8"?> 2<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 3 <!-- This module was also published with a richer model, Gradle metadata, --> 4 <!-- which should be used instead. Do not delete the following line which --> 5 <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> 6 <!-- that they should prefer consuming it instead. --> 7 <!-- do_not_remove: published-with-gradle-metadata --> 8 <modelVersion>4.0.0</modelVersion> 9 <groupId>androidx.media3</groupId> 10 <artifactId>media3-exoplayer</artifactId> 11 <version>1.5.0-rc01</version> 12 <packaging>aar</packaging> 13 <name>Media3 ExoPlayer module</name> 14 <description>Media3 ExoPlayer module</description> 15 <licenses> 16 <license> 17 <name>The Apache Software License, Version 2.0</name> 18 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 19 <distribution>repo</distribution> 20 </license> 21 </licenses> 22 <developers> 23 <developer> 24 <name>The Android Open Source Project</name> 25 </developer> 26 </developers> 27 <scm> 28 <connection>scm:git:https://github.com/androidx/media.git</connection> 29 <url>https://github.com/androidx/media</url> 30 </scm> 31 <dependencies> 32 <dependency> 33 <groupId>androidx.media3</groupId> 34 <artifactId>media3-common</artifactId> 35 <version>1.5.0-rc01</version> 36 <scope>compile</scope> 37 <type>aar</type> 38 </dependency> 39 <dependency> 40 <groupId>androidx.media3</groupId> 41 <artifactId>media3-container</artifactId> 42 <version>1.5.0-rc01</version> 43 <scope>compile</scope> 44 <type>aar</type> 45 </dependency> 46 <dependency> 47 <groupId>androidx.media3</groupId> 48 <artifactId>media3-datasource</artifactId> 49 <version>1.5.0-rc01</version> 50 <scope>compile</scope> 51 <type>aar</type> 52 </dependency> 53 <dependency> 54 <groupId>androidx.media3</groupId> 55 <artifactId>media3-decoder</artifactId> 56 <version>1.5.0-rc01</version> 57 <scope>compile</scope> 58 <type>aar</type> 59 </dependency> 60 <dependency> 61 <groupId>androidx.media3</groupId> 62 <artifactId>media3-extractor</artifactId> 63 <version>1.5.0-rc01</version> 64 <scope>compile</scope> 65 <type>aar</type> 66 </dependency> 67 <dependency> 68 <groupId>androidx.media3</groupId> 69 <artifactId>media3-database</artifactId> 70 <version>1.5.0-rc01</version> 71 <scope>compile</scope> 72 <type>aar</type> 73 </dependency> 74 <dependency> 75 <groupId>androidx.annotation</groupId> 76 <artifactId>annotation</artifactId> 77 <version>1.6.0</version> 78 <scope>runtime</scope> 79 </dependency> 80 <dependency> 81 <groupId>androidx.collection</groupId> 82 <artifactId>collection</artifactId> 83 <version>1.2.0</version> 84 <scope>runtime</scope> 85 </dependency> 86 <dependency> 87 <groupId>androidx.core</groupId> 88 <artifactId>core</artifactId> 89 <version>1.8.0</version> 90 <scope>runtime</scope> 91 <type>aar</type> 92 </dependency> 93 <dependency> 94 <groupId>androidx.exifinterface</groupId> 95 <artifactId>exifinterface</artifactId> 96 <version>1.3.6</version> 97 <scope>runtime</scope> 98 <type>aar</type> 99 </dependency> 100 </dependencies> 101</project> 102